'InvoiceItems', 'names' => 'InvoiceItems', 'icon' => 'las la-list', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'InvoiceItems', 'sub' => 'InvoiceItems' ], /** * Singlular and plural name of the module */ 'groups' => [ 'main' => 'Main', 'images' => 'Images', 'details' => 'Details', 'settings' => 'Settings' ], /** * Form sub section name for the module. */ 'sections' => [ 'main' => 'Main', 'details' => 'Details', ], /** * Options for select/radio/check. */ 'options' => [ 'item_type' => [ [ 'key' => 'income', 'value' => 'income', 'text' => 'income', ], [ 'key' => 'expense', 'value' => 'expense', 'text' => 'expense', ], ], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'ref' => 'Please enter ref', 'user_id' => 'Please enter user id', 'itemable_id' => 'Please enter itemable id', 'itemable_type' => 'Please enter itemable type', 'type_id' => 'Please enter type id', 'item_type' => 'Please select item type', 'description' => 'Please enter description', 'debit' => 'Please enter debit', 'credit' => 'Please enter credit', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', 'deleted_at' => 'Please select deleted at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'ref' => 'Ref', 'user_id' => 'User id', 'itemable_id' => 'Itemable id', 'itemable_type' => 'Itemable type', 'type_id' => 'Type id', 'item_type' => 'Item type', 'description' => 'Description', 'debit' => 'Debit', 'credit' => 'Credit', 'created_at' => 'Created at', 'updated_at' => 'Updated at', 'deleted_at' => 'Deleted at', ], // Customize this permissions if needed. /** * Label for actions. */ 'actions' => [ 'copy' => [ 'label' => 'Copy', 'icon' => 'save', 'varient' => 'outline', ], 'empty' => [ 'label' => 'Empty', 'icon' => 'save', 'varient' => 'outline', ], ], ];