'Wallet', 'names' => 'Wallets', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Wallets', 'sub' => 'Wallets', 'list' => 'List of wallets', 'edit' => 'Edit wallet', 'create' => 'Create new wallet' ], /** * Options for select/radio/check. */ 'options' => [ 'type' => ['Withdraw','Deposit','Buy','Sell'], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'customer_id' => 'Please enter customer id', 'rate' => 'Please enter rate', 'deposit' => 'Please enter deposit', 'withdraw' => 'Please enter withdraw', 'count' => 'Please enter count', 'type' => 'Please select type', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', 'deleted_at' => 'Please select deleted at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'customer_id' => 'Customer id', 'rate' => 'Rate', 'deposit' => 'Deposit', 'withdraw' => 'Withdraw', 'count' => 'Count', 'type' => 'Type', 'created_at' => 'Created at', 'updated_at' => 'Updated at', 'deleted_at' => 'Deleted at', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'customer_id' => ['name' => 'Customer id', 'data-column' => 1, 'checked'], 'rate' => ['name' => 'Rate', 'data-column' => 2, 'checked'], 'deposit' => ['name' => 'Deposit', 'data-column' => 3, 'checked'], 'withdraw' => ['name' => 'Withdraw', 'data-column' => 4, 'checked'], 'count' => ['name' => 'Count', 'data-column' => 5, 'checked'], 'type' => ['name' => 'Type', 'data-column' => 6, 'checked'], 'created_at' => ['name' => 'Created at', 'data-column' => 7, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Wallets', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];