lamalama/laravel-wishlist
最新稳定版本:0.2.1
Composer 安装命令:
composer require lamalama/laravel-wishlist
包简介
Make your models wishlistable
关键字:
README 文档
README
Make your Eloquent models wishlistable.
Install
Via Composer
$ composer require lamalama/laravel-wishlist
You can publish the migration with:
php artisan vendor:publish --provider="LamaLama\Wishlist\WishlistServiceProvider" --tag="migrations"
After publishing the migration you can create the wishlist table by running the migrations:
php artisan migrate
You can optionally publish the config file with:
php artisan vendor:publish --provider="LamaLama\Wishlist\WishlistServiceProvider" --tag="config"
Prepare user model
Import the HasWishlists trait to your User model file.
use LamaLama\Wishlist\HasWishlists;
Add the HasWishlists trait to your User model.
use HasWishlists;
Prepare wishlistable model(s)
Optionally you can add the Wishlistable trait to Eloquent models that you want to give additional methods.
Import the Wishlistable trait to your wishlistable model file.
use LamaLama\Wishlist\Wishlistable;
Add the Wishlistable trait to your wishlistable model.
use Wishlistable;
Use
You can add any Eloquent model as 'wish' to the User model:
$user = User::find(1); $product = Product::find(1); $user->wish($product);
Optionally you can set the name of the wishlist to which you want to add the wish. When no list is specified the wish will be stored on the 'default' list. The name of the default list can be adjusted in the config file.
$user->wish($product, 'Christmas presents');
You can remove any Eloquent model as 'wish' from the User model:
$user->unwish($product); $user->unwish($product, 'Christmas presents');
Get all wishlists
$user->wishlists();
Get a specific wishlist
$user->wishlist('Christmas presents');
Change log
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 7.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 23
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-05-31