'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' => ['Pending','Accepeted','Declined'], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'clinic_id' => 'Please select clinic', 'department_id' => 'Please select department ', 'doctor_id' => 'Please select doctor', 'patient_name' => 'Please enter patient name', 'email' => 'Please enter email', 'phone' => 'Please enter phone', 'address' => 'Please enter address', 'appointment_time' => 'Please select appointment time', 'status' => 'Please select status', 'slug' => 'Please enter slug', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', 'deleted_at' => 'Please select deleted at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'clinic_id' => 'Clinic', 'department_id' => 'Department', 'doctor_id' => 'Doctor', 'patient_name' => 'Patient name', 'email' => 'Email', 'phone' => 'Phone', 'address' => 'Address', 'appointment_time' => 'Appointment time', 'status' => 'Status', 'slug' => 'Slug', 'created_at' => 'Created at', 'updated_at' => 'Updated at', 'deleted_at' => 'Deleted at', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'clinic_id' => ['name' => 'Clinic', 'data-column' => 1, 'checked'], 'department_id' => ['name' => 'Department', 'data-column' => 2, 'checked'], 'doctor_id' => ['name' => 'Doctor', 'data-column' => 3, 'checked'], 'patient_name' => ['name' => 'Patient name', 'data-column' => 4, 'checked'], 'email' => ['name' => 'Email', 'data-column' => 5, 'checked'], 'phone' => ['name' => 'Phone', 'data-column' => 6, 'checked'], 'address' => ['name' => 'Address', 'data-column' => 7, 'checked'], 'appointment_time' => ['name' => 'Appointment time', 'data-column' => 8, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Appointments', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];