'Appointment', 'names' => 'Appointments', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Appointments', 'sub' => 'Appointments', 'list' => 'List of appointments', 'edit' => 'Edit appointment', 'create' => 'Create new appointment' ], /** * Options for select/radio/check. */ 'options' => [ 'status' => ['Not confirmed','Confirmed'], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'user_id' => 'Please enter user', 'user_type' => 'Please enter user type', 'patient_id' => 'Please enter patient', 'branch_id' => 'Please enter branch', 'physician_id' => 'Please enter physician', 'referral_source' => 'Please enter referral source', 'type' => 'Please enter type', 'status' => 'Please select status', 'description' => 'Please enter description', 'date' => 'Please select date', 'length' => 'Please select length', 'prior_auth' => 'Please enter prior auth', 'prior_auth_exp' => 'Please select prior auth exp', 'notes' => 'Please enter notes', 'repeat' => 'Please enter repeat', 'created_at' => 'Please select created', 'deleted_at' => 'Please select deleted', 'updated_at' => 'Please select updated', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'user_id' => 'User', 'user_type' => 'User type', 'patient_id' => 'Patient', 'branch_id' => 'Branch', 'physician_id' => 'Physician', 'referral_source' => 'Referral source', 'type' => 'Type', 'status' => 'Status', 'description' => 'Description', 'date' => 'Date', 'length' => 'Length', 'prior_auth' => 'Prior auth', 'prior_auth_exp' => 'Prior auth exp', 'notes' => 'Notes', 'repeat' => 'Repeat', 'created_at' => 'Created', 'deleted_at' => 'Deleted', 'updated_at' => 'Updated', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'patient_id' => ['name' => 'Patient', 'data-column' => 1, 'checked'], 'branch_id' => ['name' => 'Branch', 'data-column' => 2, 'checked'], 'physician_id' => ['name' => 'Physician', 'data-column' => 3, 'checked'], 'referral_source' => ['name' => 'Referral source', 'data-column' => 4, 'checked'], 'type' => ['name' => 'Type', 'data-column' => 5, 'checked'], 'date' => ['name' => 'Date', 'data-column' => 6, 'checked'], 'length' => ['name' => 'Length', 'data-column' => 7, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Appointments', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];