'agency', /* * Package. */ 'package' => 'contact', /* * Modules. */ 'modules' => ['contact'], 'contact' => [ 'model' => [ 'model' => \Agency\Contact\Models\Contact::class, 'table' => 'contacts', 'presenter' => \Agency\Contact\Repositories\Presenter\ContactPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'media_id', 'user_id', 'title', 'fname', 'lname', 'designation', 'phone', 'email', 'contact_region', 'contactfor', 'restriction', 'image', 'slug', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'contact/contact', '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' => 'Agency', 'package' => 'Contact', 'module' => 'Contact', ], ], ];