'litepie', /* * Package. */ 'package' => 'product', /* * Modules. */ 'modules' => ['product', 'brand', 'category', 'productmodel'], 'product' => [ 'model' => [ 'model' => \Litepie\Product\Models\Product::class, 'table' => 'products', 'presenter' => \Litepie\Product\Repositories\Presenter\ProductPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'title', 'tagline', 'parentcategory_id', 'category_id', 'brand_id', 'model_id', 'available_status', 'description', 'features', 'price', 'discount', 'topic_subject', 'topic_style', 'gendergroup', 'agegroup', 'targetgroup', 'special_targetgroup', 'budget', 'time', 'location', 'delivery', 'email', 'phone', 'website', 'logo', 'cover_image', 'gallery', 'is_deal', 'discounted_price', 'special_conditions', 'deal_valid_from', 'deal_valid_to', 'deal_publish_from', 'deal_publish_to', 'is_auction', 'ads_auction_from', 'ads_auction_to', 'slug', 'user_id', 'created_at', 'deleted_at', 'updated_at'], 'translatables' => [], 'upload_folder' => 'product/product', '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' => 'Litepie', 'package' => 'Product', 'module' => 'Product', ], ], 'brand' => [ 'model' => [ 'model' => \Litepie\Product\Models\Brand::class, 'table' => 'brands', 'presenter' => \Litepie\Product\Repositories\Presenter\BrandPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'name', 'status', 'slug', 'user_id', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'product/brand', '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' => 'Litepie', 'package' => 'Product', 'module' => 'Brand', ], ], 'category' => [ 'model' => [ 'model' => \Litepie\Product\Models\Category::class, 'table' => 'categories', 'presenter' => \Litepie\Product\Repositories\Presenter\CategoryPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'parent_id', 'name', 'status', 'slug', 'user_id', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'product/category', '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' => 'Litepie', 'package' => 'Product', 'module' => 'Category', ], ], 'productmodel' => [ 'model' => [ 'model' => \Litepie\Product\Models\Productmodel::class, 'table' => 'productmodels', 'presenter' => \Litepie\Product\Repositories\Presenter\ProductmodelPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'name', 'status', 'slug', 'user_id', 'created_at', 'updated_at', 'deleted_at'], 'translatables' => [], 'upload_folder' => 'product/productmodel', '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' => 'Litepie', 'package' => 'Product', 'module' => 'Productmodel', ], ], ];