The Laravel Framework for building a clinic website that deals with skin and genital diseases.
Laravel 5.6+ MySQL 5.6+ if using InnoDB Installation Instructions
-
Unisharp File Manager and CKeditor
a. In terminal run: composer require unisharp/laravel-filemanager:~1.8
b. Register the package with laravel in config/app.php under providers and aliases with the following:
'providers' => [ ... Unisharp\Laravelfilemanager\LaravelFilemanagerServiceProvider::class, Intervention\Image\ImageServiceProvider::class, ]; 'aliases' => [ ... 'Image' => Intervention\Image\Facades\Image::class, ];
c. download and install ckeditor plugin from the official website and follow the installation instructions
-
jsValidator a. In terminal run: composer require proengsoft/laravel-jsvalidation:^2.0 b. Register the package with laravel in config/app.php under providers and aliases with the following:
'providers' => [ ... Proengsoft\JsValidation\JsValidationServiceProvider::class, ]; 'aliases' => [ ... 'JsValidator' => Proengsoft\JsValidation\Facades\JsValidatorFacade::class, ];
-
Publish all configurations that have been installed
Enjoy ;)