'Customer', 'names' => 'Customers', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Customers', 'sub' => 'Customers', 'list' => 'List of customers', 'edit' => 'Edit customer', 'create' => 'Create new customer' ], /** * Options for select/radio/check. */ 'options' => [ 'is_active' => [[ false,true]], ], /** * Placeholder for inputs */ 'placeholder' => [ 'uid' => 'uid', 'merchant_id' => 'Merchant ID', 'customer_name' => 'Please Enter Name', 'birthday' => 'Please Enter Date', 'email' => 'Please Enter Email', 'phone_number' => 'Please Enter Phone', 'address' => 'Please Enter Address', 'author' => 'Please Enter Author', 'author_edit' => 'Please Enter Author Edit', 'is_active' => '', ], /** * Labels for inputs. */ 'label' => [ 'uid' => 'UID', 'merchant_id' => 'Merchant ID', 'customer_name' => 'Customer Name', 'birthday' => 'Birth Day', 'email' => 'Email', 'phone_number' => 'Phone Number', 'address' => 'Address', 'author' => 'Author', 'author_edit' => 'Author Edit', 'is_active' => '', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'customer_name' => ['name' => 'Customer Name', 'data-column' => 1, 'checked'], 'birthday' => ['name' => 'Birth Day', 'data-column' => 2, 'checked'], 'email' => ['name' => 'Email', 'data-column' => 3, 'checked'], 'phone_number' => ['name' => 'Phone Number', 'data-column' => 4, 'checked'], 'address' => ['name' => 'Address', 'data-column' => 5, 'checked'], 'author' => ['name' => 'Author', 'data-column' => 6, 'checked'], 'author_edit' => ['name' => 'Author Edit', 'data-column' => 7, 'checked'], 'is_active' => ['name' => '', 'data-column' => 8, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Customers', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];