zepson / laravel-bookmark
Laravel bookmark
Requires
- laravel/framework: ^5.5||~6.0||~7.0||~8.0
Requires (Dev)
- captainhook/captainhook: ^5.3
- captainhook/plugin-composer: ^5.2
- friendsofphp/php-cs-fixer: ^2.16
- orchestra/testbench: ^5.0
- phpunit/phpunit: ~8.0
- ramsey/conventional-commits: dev-master
This package is auto-updated.
Last update: 2024-10-21 07:10:54 UTC
README
User bookmark feature for Laravel Application.
Installing
$ composer require trendsoft/laravel-bookmark -vvv
Configuration
This step is optional
$ composer artisan vendor:publish --provider="Trendsoft\\LaravelBookmark\\BookmarkServiceProvider" --tag=config
Migrations
This step is also optional, if you want to custom bookmarks table, you can publish the migration files:
$ composer artisan vendor:publish --provider="Trendsoft\\LaravelBookmark\\BookmarkServiceProvider" --tag=migrations
Usage
Traits
Trendsoft\LaravelBookmark\Traits\Bookmarker
use Illuminate\Database\Eloquent\Model; use Trendsoft\LaravelBookmark\Traits\Bookmarker; class User extends Model { use Bookmarker; }
Trendsoft\LaravelBookmark\Traits\Bookmarkable
use Illuminate\Database\Eloquent\Model; use Trendsoft\LaravelBookmark\Traits\Bookmarkable; class Post extends Model { use Bookmarkable; }
API
$user = User::find(1); $post = Post::find(1); $user->bookmark($post); $user->unBookmark($post); $user->toggleBookmark($post); $user->hasBookmarked($post); $post->isBookmarkedBy($user);
Get user bookmarks with pagination:
$bookmarks = $user->bookmarks()->with('bookmarkable')->paginate(20); foreach($bookmarks as $bookmark){ $bookmark->bookmarkable; // App\Post instance }
Get object bookmarkers:
foreach($post->bookmarkers as $user){ echo $user->name; }
with pagination:
$bookmarkers = $post->bookmarkers()->paginate(20); foreach($bookmarkers as $user){ echo $user->name; }
Aggregations
//all $user->bookmarks()->count(); //with type $user->bookmarks()->withType(Post::class)->count(); // bookmarkers count $post->bookmarkers()->count();
List with *_count
attribute:
$users = User::withCount('bookmarks')->get(); foreach($users as $user){ echo $user->bookmarks_count; }
N +1 issue
To avoid the N+1 issue, you can use eager loading to reduce this operation to just 2 queries. When querying, you may specify which relationships should be eager loaded using the with method:
// Bookmarker $users = App\User::with('bookmarks')->get(); foreach($users as $user) { $user->hasBookmarked($post); } // Bookmarkable $posts = App\Post::with('bookmarks')->get(); // or $posts = App\Post::with('bookmarkers')->get(); foreach($posts as $post){ $post->isBookmarkedBy($user); }
Events
Contributing
You can contribute in one of three ways:
- File bug reports using the issue tracker.
- Answer questions or fix bugs on the issue tracker.
- Contribute new features or update the wiki.
The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.
License
MIT