'bots', /* * Package. */ 'package' => 'bot', /* * Modules. */ 'modules' => ['bots'], 'bots' => [ 'model' => [ 'model' => \Bots\Bot\Models\Bots::class, 'table' => 'bots', 'presenter' => \Bots\Bot\Repositories\Presenter\BotsPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['bot_name', 'bot_inputs', 'bot_code', 'bot_instructions'], 'translatables' => [], 'upload_folder' => 'bot/bots', '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' => 'Bots', 'package' => 'Bot', 'module' => 'Bots', ], ], ];