承接 cape-and-bay/draftable 相关项目开发

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

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

cape-and-bay/draftable

最新稳定版本:v1.3.3

Composer 安装命令:

composer require cape-and-bay/draftable

包简介

Laravel Drafts tool for models

README 文档

README

Latest Version on Packagist Total Downloads

Bring the power of Wordpress drafts posts to your Laravel application , with simple functions and steps

Installation

You can install the package via composer:

composer require CapeAndBay/draftable

after installing the package go a head and run migrate.

php artisan migrate

In your model add

use DraftableModel;

Usage

Save model as draft

to save the model as draft you can use php $model->saveAsDraft() method

 $faker = Factory::create();
 $article = new Article();
 $article->title = $faker->paragraph(1);
 $article->content = $faker->paragraph;
 $article->saveAsDraft();

in case you want to save it in its own table but also you need to make a draft of this update you can use

$article->saveWithDraft();

Assign the draft for owner

to assign the draft for specific owner

$article::setOwner($user);

To get all drafts for specific owner

 $draft_articles = Article::setOwner($user)->getAllDrafts();

Save data with the draft

you can save data with the draft like (publish_date) or anything else.

$article->saveAsDraft();
$article->draft->setData('publish_date', Carbon::now()->addDay());
//you can get the data with this method
$article->draft->getData('publish_date');

Get Drafts for model

To get all drafts for the model use php Model::getAllDrafts()

 $drafts = Article::getAllDrafts();

to get published drafts only use php Model::getPublishedDraft()

 $publishedDrafts = Article::getPublishedDraft();

to get unpublished drafts only use php Model::getUnPublishedDraft()

 $unpublished_draft_articles = Article::getUnPublishedDraft();

to publish the draft you can use

$draft_articles->publish();

# Publish all drafts
$draft_articles = Article::getUnPublishedDraft();
foreach($draft_articles as $draft_articles) {
    $draft_articles->publish();
}

Get drafts for saved model

once you saved the model with

$article->saveWithDraft();

you can access all drafts for this model with this method

$article = Article::first();
dump($article->drafts);

if you want Eloquent model for specific draft use

$draft->model()
#
$article_drafts[0]->model()

Restore specific draft for stored model

after selecting the draft for the model and you want to restore it as current published one you can use php $draft->restore()

$article = Article::first();
$article_draft = $article->drafts()->first();
$article_draft->restore();

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 mustafakhaled.dev@gmail.com instead of using the issue tracker.

Credits

License

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

统计信息

  • 总下载量: 2.75k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-01-09