'Discount', 'names' => 'Discounts', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Discounts', 'sub' => 'Discounts', 'list' => 'List of discounts', 'edit' => 'Edit discount', 'create' => 'Create new discount' ], /** * Options for select/radio/check. */ 'options' => [ 'status' => ['Active','Inactive'], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'name' => 'Please enter name', 'parent_id' => 'Please enter parent id', 'category_id' => 'Please enter category id', 'product_id' => 'Please enter product id', 'discount' => 'Please enter discount', 'discount_price' => 'Please enter discount price', 'valid_from' => 'Please select valid from', 'valid_to' => 'Please select valid to', 'status' => 'Please select status', 'slug' => 'Please enter slug', 'user_id' => 'Please enter user id', 'user_type' => 'Please enter user type', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', 'deleted_at' => 'Please select deleted at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'name' => 'Name', 'parent_id' => 'Parent id', 'category_id' => 'Category id', 'product_id' => 'Product id', 'discount' => 'Discount', 'discount_price' => 'Discount price', 'valid_from' => 'Valid from', 'valid_to' => 'Valid to', 'status' => 'Status', 'slug' => 'Slug', 'user_id' => 'User id', 'user_type' => 'User type', 'created_at' => 'Created at', 'updated_at' => 'Updated at', 'deleted_at' => 'Deleted at', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'name' => ['name' => 'Name', 'data-column' => 1, 'checked'], 'parent_id' => ['name' => 'Parent id', 'data-column' => 2, 'checked'], 'category_id' => ['name' => 'Category id', 'data-column' => 3, 'checked'], 'product_id' => ['name' => 'Product id', 'data-column' => 4, 'checked'], 'discount' => ['name' => 'Discount', 'data-column' => 5, 'checked'], 'discount_price' => ['name' => 'Discount price', 'data-column' => 6, 'checked'], 'valid_from' => ['name' => 'Valid from', 'data-column' => 7, 'checked'], 'valid_to' => ['name' => 'Valid to', 'data-column' => 8, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Discounts', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];