protected $rules = [
'create' => [
- 'name' => 'required|string|max:255',
- 'description' => 'string|max:1000',
- 'books' => 'array',
+ 'name' => ['required', 'string', 'max:255'],
+ 'description' => ['string', 'max:1000'],
+ 'books' => ['array'],
],
'update' => [
- 'name' => 'string|min:1|max:255',
- 'description' => 'string|max:1000',
- 'books' => 'array',
+ 'name' => ['string', 'min:1', 'max:255'],
+ 'description' => ['string', 'max:1000'],
+ 'books' => ['array'],
],
];
$shelf = Bookshelf::visible()->with([
'tags', 'cover', 'createdBy', 'updatedBy', 'ownedBy',
'books' => function (BelongsToMany $query) {
- $query->visible()->get(['id', 'name', 'slug']);
+ $query->scopes('visible')->get(['id', 'name', 'slug']);
},
])->findOrFail($id);