承接 lambdadigamma/laravel-publishable 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

lambdadigamma/laravel-publishable

最新稳定版本:1.1.0

Composer 安装命令:

composer require lambdadigamma/laravel-publishable

包简介

A Laravel Eloquent model trait for publishing and unpublishing

README 文档

README

Laravel Publishable

Build Status Latest Stable Version License

A simple package for making Laravel Eloquent models 'publishable'. Not published models are excluded from queries by default but can be queried via extra scope.

This package allows easy publishing and unpublishing of models by combining scopes and macros.

How does it work?

The package provides a trait Publishable for your Eloquent model. Your database schema has to have a published_at datetime column so that the trait can read and write it. By reading this column the package can determine which models already have been published and provide the requested models.

Installation

You can install the package via composer:

composer require lambdadigamma/laravel-publishable

Usage

Migrations

The Publishable trait works similarly to Laravel's SoftDeletes trait. This package provides a macro for Laravel's Migration Builder. Just use the publishedAt macro in your migration to get started:

Schema::create('posts', function (Blueprint $table) {
    $table->id();
    $table->string('title');
    $table->text('text');
    $table->timestamps();
    $table->publishedAt(); // Macro provided by the package
});

Eloquent Model Trait

After providing a published_at timestamp on your model, you can use the Publishable trait on your Eloquent model:

namespace App\Models;

use \Illuminate\Database\Eloquent\Model;
use \LaravelPublishable\Publishable;

class Post extends Model {
    use Publishable;
    ...
}

Extensions

The extensions shipped with this trait include; publish, unpublish, withNotPublished, withoutPublished, onlyPublished and can be used accordingly:

$post = Post::first();
$post->publish();
$post->publishAt(now()->addHour(1));
$post->scheduleFor(new Carbon('2021-04-01 10:00:00'));
$post->unpublish();

$postsWithNotPublished = Post::query()->withNotPublished();
$onlyNotPublishedPosts = Post::query()->onlyNotPublished();

When not specifing any additional scopes, all not published models are excluded from the query by default (withoutNotPublished) to prevent leaks of not published data.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email github@lambdadigamma.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 838
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-03-28

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固