'shopping', /* * Package. */ 'package' => 'returning', /* * Modules. */ 'modules' => ['returning', 'reason'], 'returning' => [ 'model' => [ 'model' => \Shopping\Returning\Models\Returning::class, 'table' => 'returnings', 'presenter' => \Shopping\Returning\Repositories\Presenter\ReturningPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'user_id', 'user_type', 'order_id', 'product_id', 'product', 'model', 'quantity', 'opened', 'return_action', 'status', 'comment', 'date_ordered', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'returning/returning', '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' => 'Shopping', 'package' => 'Returning', 'module' => 'Returning', ], ], 'reason' => [ 'model' => [ 'model' => \Shopping\Returning\Models\Reason::class, 'table' => 'reasons', 'presenter' => \Shopping\Returning\Repositories\Presenter\ReasonPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'reason', 'return_id', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'returning/reason', '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' => 'Shopping', 'package' => 'Returning', 'module' => 'Reason', ], ], ];