class BookshelfApiController extends ApiController
{
- /**
- * @var BookshelfRepo
- */
- protected $bookshelfRepo;
+ protected BookshelfRepo $bookshelfRepo;
protected $rules = [
'create' => [
'name' => ['required', 'string', 'max:255'],
'description' => ['string', 'max:1000'],
'books' => ['array'],
+ 'tags' => ['array'],
],
'update' => [
'name' => ['string', 'min:1', 'max:255'],
'description' => ['string', 'max:1000'],
'books' => ['array'],
+ 'tags' => ['array'],
],
];