'laraauto', /* * Package. */ 'package' => 'automobile', /* * Modules. */ 'modules' => ['automobile', 'accessory'], 'automobile' => [ 'model' => [ 'model' => \Laraauto\Automobile\Models\Automobile::class, 'table' => 'automobiles', 'presenter' => \Laraauto\Automobile\Repositories\Presenter\AutomobilePresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'user_id', 'user_type', 'country_id', 'state_id', 'district_id', 'city_id', 'location_id', 'make_id', 'model_id', 'name', 'type', 'releaseyear', 'color', 'mileage', 'price', 'transmission', 'fuel_type', 'description', 'conditionn', 'engine', 'features', 'address', 'neighborhood', 'zip', 'images', 'status', 'slug', 'viewcount', 'slider', 'upload_folder', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'automobile/automobile', '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' => 'Laraauto', 'package' => 'Automobile', 'module' => 'Automobile', ], ], 'accessory' => [ 'model' => [ 'model' => \Laraauto\Automobile\Models\Accessory::class, 'table' => 'accessories', 'presenter' => \Laraauto\Automobile\Repositories\Presenter\AccessoryPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'user_id', 'user_type', 'title', 'category', 'company', 'model', 'price', 'description', 'images', 'status', 'slug', 'upload_folder', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'automobile/accessory', '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' => 'Laraauto', 'package' => 'Automobile', 'module' => 'Accessory', ], ], ];