'litecms', /* * Package. */ 'package' => 'updates', /* * Modules. */ 'modules' => ['updates'], /* * Image size. */ 'image' => [ 'xs' => [ 'width' => '60', 'height' => '45', 'action' => 'fit', 'watermark' => 'img/logo/default.png', ], 'sm' => [ 'width' => '160', 'height' => '120', 'action' => 'fit', 'watermark' => 'img/logo/default.png', ], 'md' => [ 'width' => '460', 'height' => '345', 'action' => 'fit', 'watermark' => 'img/logo/default.png', ], 'lg' => [ 'width' => '800', 'height' => '600', 'action' => 'resize', 'watermark' => 'img/logo/default.png', ], 'xl' => [ 'width' => '1000', 'height' => '750', 'action' => 'resize', 'watermark' => 'img/logo/default.png', ], ], 'updates' => [ 'model' => 'Litecms\Updates\Models\Updates', 'table' => 'updates', 'presenter' => \Litecms\Updates\Repositories\Presenter\UpdatesItemPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at'], 'appends' => [], 'fillable' => ['user_id', 'upload_folder', ], 'translate' => [], 'upload-folder' => '/uploads/updates/updates', 'uploads' => [ 'single' => [], 'multiple' => [], ], 'casts' => [ ], 'revision' => [], 'perPage' => '20', 'search' => [ 'name' => 'like', 'status', ], ], ];