'Sale', 'names' => 'Sales', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Sales', 'sub' => 'Sales', 'list' => 'List of sales', 'edit' => 'Edit sale', 'create' => 'Create new sale' ], /** * Options for select/radio/check. */ 'options' => [ 'status' => ['Sold','Pending'], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'user_id' => 'Please enter user id', 'user_type' => 'Please enter user type', 'product_id' => 'Please enter product id', 'status' => 'Please select status', 'price' => 'Please enter price', 'amount' => 'Please enter amount', 'quantity' => 'Please enter quantity', 'date' => 'Please select date', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'user_id' => 'User id', 'user_type' => 'User type', 'product_id' => 'Product id', 'status' => 'Status', 'price' => 'Price', 'amount' => 'Amount', 'quantity' => 'Quantity', 'date' => 'Date', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'product_id' => ['name' => 'Product id', 'data-column' => 1, 'checked'], 'price' => ['name' => 'Price', 'data-column' => 2, 'checked'], 'amount' => ['name' => 'Amount', 'data-column' => 3, 'checked'], 'quantity' => ['name' => 'Quantity', 'data-column' => 4, 'checked'], 'date' => ['name' => 'Date', 'data-column' => 5, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Sales', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];