ryan / toastr-for-laravel
toastr.js for laravel5
Installs: 9 130
Dependents: 0
Suggesters: 0
Security: 0
Stars: 39
Watchers: 1
Forks: 12
Open Issues: 3
pkg:composer/ryan/toastr-for-laravel
This package is not auto-updated.
Last update: 2025-12-07 01:15:40 UTC
README
Installation
-
Run
composer require ryan/toastr-for-laravel -
Add
Yuansir\Toastr\ToastrServiceProvider::class,to providers in config/app.php -
Add
'Toastr' => Yuansir\Toastr\Facades\Toastr::class,to aliases in config/app.php -
Run
php artisan vendor:publish
Usage
Just add this code to your blade template file:
{!! Toastr::render() !!}
Use these methods in controllers:
Toastr::warning($message, $title = null, $options = [])Toastr::error($message, $title = null, $options = [])Toastr::info($message, $title = null, $options = [])Toastr::success($message, $title = null, $options = [])Toastr::clear()
Config
set the toaster options in config/toastr.php , available options => toastr.js demo