'liteerp', /* * Package. */ 'package' => 'appointment', /* * Modules. */ 'modules' => ['appointment'], 'appointment' => [ 'model' => [ 'model' => \Liteerp\Appointment\Models\Appointment::class, 'table' => 'appointments', 'presenter' => \Liteerp\Appointment\Repositories\Presenter\AppointmentPresenter::class, 'hidden' => [], 'visible' => [], 'guarded' => ['*'], 'slugs' => ['slug' => 'name'], 'dates' => ['deleted_at', 'createdat', 'updated_at'], 'appends' => [], 'fillable' => ['id', 'user_id', 'user_type', 'patient_id', 'branch_id', 'physician_id', 'referral_source', 'type', 'status', 'description', 'date', 'length', 'prior_auth', 'prior_auth_exp', 'notes', 'repeat', 'created_at', 'deleted_at', 'updated_at'], 'translatables' => [], 'upload_folder' => 'appointment/appointment', 'uploads' => [ /* 'images' => [ 'count' => 10, 'type' => 'image', ], 'file' => [ 'count' => 1, 'type' => 'file', ], */ ], 'casts' => [ /* 'images' => 'array', 'file' => 'array', */ ], 'revision' => [], 'perPage' => '20', 'search' => [ 'name' => 'like', 'status', ] ], 'controller' => [ 'provider' => 'Liteerp', 'package' => 'Appointment', 'module' => 'Appointment', ], ], ];