/home/techb158/ileadtechnology.com/vendor/realrashid/sweet-alert/docs
NameSizeModeActions
css/-0755rm
imgs/-0755rm
.nojekyll00644editdlrm
carbonad.js22360644editdlrm
changelog.md39550644editdlrm
config.md6140644editdlrm
credits.md7920644editdlrm
demo.md30410644editdlrm
enterprise.md6060644editdlrm
environment.md65940644editdlrm
helpers.md45920644editdlrm
index.html40720644editdlrm
install.md7040644editdlrm
middleware.md37100644editdlrm
README.md20500644editdlrm
sw.js30920644editdlrm
tutorial.md31160644editdlrm
usage.md16780644editdlrm
_coverpage.md3810644editdlrm
_sidebar.md5440644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/realrashid/sweet-alert/docs/install.md (704B)
# Installation To get started with SweetAlert2, use Composer to add the package to your project's dependencies: ```bash composer require realrashid/sweet-alert ``` !> The Below Step is Optional in Laravel 5.5 or above! After installing the sweet-alert package, register the service provider ```php RealRashid\SweetAlert\SweetAlertServiceProvider::class, ``` in your `config/app.php` configuration file: ```php 'providers' => [ /* * Package Service Providers... */ RealRashid\SweetAlert\SweetAlertServiceProvider::class, ], ``` Also, add the `Alert` facade to the `aliases` array in your `app` configuration file: ```php 'Alert' => RealRashid\SweetAlert\Facades\Alert::class, ```