'Product', 'names' => 'Products', 'icon' => 'las la-list', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Products', 'sub' => 'Products' ], /** * Singlular and plural name of the module */ 'groups' => [ 'main' => 'Main', 'images' => 'Images', 'details' => 'Details', 'settings' => 'Settings' ], /** * Form sub section name for the module. */ 'sections' => [ 'main' => 'Main', 'details' => 'Details', ], /** * Options for select/radio/check. */ 'options' => [ 'category_id' => [ [ 'key' => 'Yes', 'value' => 'Yes', 'text' => 'Yes', ], [ 'key' => 'No', 'value' => 'No', 'text' => 'No', ], ], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'name' => 'Please enter name', 'category_id' => 'Please enter category id', 'image' => 'Please enter image', 'status' => 'Please enter status', 'slug' => 'Please enter slug', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', 'deteted_at' => 'Please select deteted at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'name' => 'Name', 'category_id' => 'Category id', 'image' => 'Image', 'status' => 'Status', 'slug' => 'Slug', 'created_at' => 'Created at', 'updated_at' => 'Updated at', 'deteted_at' => 'Deteted at', ], /** * Label for workflows. */ 'workflow' => [ 'submit' => [ 'label' => 'Submit', 'icon' => 'save', 'varient' => 'outline', ], 'approve' => [ 'label' => 'Approve', 'icon' => 'save', 'varient' => 'outline', ], 'reject' => [ 'label' => 'Reject', 'icon' => 'save', 'varient' => 'danger', ], 'publish' => [ 'label' => 'Publish', 'icon' => 'save', 'varient' => 'outline', ], 'unpublish' => [ 'label' => 'Unpublish', 'icon' => 'save', 'varient' => 'outline', ], 'archive' => [ 'label' => 'Archive', 'icon' => 'save', 'varient' => 'danger', ], 'unarchive' => [ 'label' => 'Unarchive', 'icon' => 'save', 'varient' => 'outline', ], ], // Customize this permissions if needed. /** * Label for actions. */ 'actions' => [ 'copy' => [ 'label' => 'Copy', 'icon' => 'save', 'varient' => 'outline', ], 'empty' => [ 'label' => 'Empty', 'icon' => 'save', 'varient' => 'outline', ], ], ];