'hrm', /* * Package. */ 'package' => 'notific', /* * Modules. */ 'modules' => ['notific'], 'notific' => [ 'model' => [ 'model' => \Hrm\Notific\Models\Notific::class, 'table' => 'notifics', 'presenter' => \Hrm\Notific\Repositories\Presenter\NotificPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'user_id', 'user_type', 'chatable_id', 'chatable_type', 'type', 'mobile', 'details', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'notific/notific', 'uploads' => [ /* 'images' => [ 'count' => 10, 'type' => 'image', ], 'file' => [ 'count' => 1, 'type' => 'file', ], */ ], 'casts' => [ /* 'images' => 'array', 'file' => 'array', */ ], 'revision' => [], 'perPage' => '20', 'search' => [ 'name' => 'like', 'status', ] ], 'controller' => [ 'provider' => 'Hrm', 'package' => 'Notific', 'module' => 'Notific', ], ], ];