'Product', 'names' => 'Products', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Products', 'sub' => 'Products', 'list' => 'List of products', 'edit' => 'Edit product', 'create' => 'Create new product' ], /** * Options for select/radio/check. */ 'options' => [ ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'order_id' => 'Please enter order', 'productable_id' => 'Please enter productable', 'productable_type' => 'Please enter productable type', 'quantity' => 'Please enter quantity', 'created_at' => 'Please select created', 'updated_at' => 'Please select updated', 'deleted_at' => 'Please select deleted', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'order_id' => 'Order id', 'productable_id' => 'Productable', 'productable_type' => 'Productable type', 'quantity' => 'Quantity', 'created_at' => 'Created', 'updated_at' => 'Updated', 'deleted_at' => 'Deleted', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'order_id' => ['name' => 'Order id', 'data-column' => 1, 'checked'], 'productable_id' => ['name' => 'Productable', 'data-column' => 2, 'checked'], 'quantity' => ['name' => 'Quantity', 'data-column' => 3, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Products', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];