'Account', 'names' => 'Accounts', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Accounts', 'sub' => 'Accounts', 'list' => 'List of accounts', 'edit' => 'Edit account', 'create' => 'Create new account' ], /** * Options for select/radio/check. */ 'options' => [ 'status' => ['Pending','Approved'], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'accountable_id' => 'Please enter accountable id', 'accountable_type' => 'Please enter accountable type', 'status' => 'Please select status', 'amount' => 'Please enter amount', 'details' => 'Please enter details', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', 'deleted_at' => 'Please select deleted at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'accountable_id' => 'Accountable id', 'accountable_type' => 'Accountable type', 'status' => 'Status', 'amount' => 'Amount', 'details' => 'Details', 'created_at' => 'Created at', 'updated_at' => 'Updated at', 'deleted_at' => 'Deleted at', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'accountable_id' => ['name' => 'Accountable id', 'data-column' => 1, 'checked'], 'status' => ['name' => 'Status', 'data-column' => 2, 'checked'], 'amount' => ['name' => 'Amount', 'data-column' => 3, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Accounts', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];