'Cart', 'names' => 'Carts', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Carts', 'sub' => 'Carts', 'list' => 'List of carts', 'edit' => 'Edit cart', 'create' => 'Create new cart' ], /** * Options for select/radio/check. */ 'options' => [ ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'instance' => 'Please enter instance', 'content' => 'Please enter content', 'total' => 'Please enter total', 'subtotal' => 'Please enter subtotal', 'tax' => 'Please enter tax', 'discount' => 'Please enter discount', 'count' => 'Please enter count', 'user_id' => 'Please enter user id', 'user_type' => 'Please enter user type', 'deleted_at' => 'Please select deleted at', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'instance' => 'Instance', 'content' => 'Content', 'total' => 'Total', 'subtotal' => 'Subtotal', 'tax' => 'Tax', 'discount' => 'Discount', 'count' => 'Count', 'user_id' => 'User id', 'user_type' => 'User type', 'deleted_at' => 'Deleted at', 'created_at' => 'Created at', 'updated_at' => 'Updated at', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'instance' => ['name' => 'Instance', 'data-column' => 1, 'checked'], 'total' => ['name' => 'Total', 'data-column' => 2, 'checked'], 'subtotal' => ['name' => 'Subtotal', 'data-column' => 3, 'checked'], 'tax' => ['name' => 'Tax', 'data-column' => 4, 'checked'], 'discount' => ['name' => 'Discount', 'data-column' => 5, 'checked'], 'count' => ['name' => 'Count', 'data-column' => 6, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Carts', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];