oriceon/toastr-5-laravel is a Laravel package for easy toastr notifications for laravel 5.
It currently has 79 GitHub stars and 488.604 downloads on Packagist (latest version 2.0.0).
Install it with composer require oriceon/toastr-5-laravel.
Discover more Laravel packages by oriceon
or browse all Laravel packages to compare alternatives.
Last updated
Easy toastr.js notifications for Laravel 5, a ported version of Laravel 4 Toastr by kamaln7
composer require oriceon/toastr-5-laravel or add "oriceon/toastr-5-laravel": "dev-master" to the require key in composer.json and run composer install'Kamaln7\Toastr\ToastrServiceProvider', to the providers key in config/app.php (optional for Laravel 5.5)'Toastr' => 'Kamaln7\Toastr\Facades\Toastr', to the aliases key in config/app.php (optional for Laravel 5.5)Include jQuery and toastr.js in your master view template, and the output of Toastr::render() afterwards:
<link href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css" rel="stylesheet">
<script src="https://raw.githubusercontent.com/oriceon/toastr-5-laravel/refs/heads/main//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://raw.githubusercontent.com/oriceon/toastr-5-laravel/refs/heads/main//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
{!! Toastr::render() !!}
Call one of these methods in your controllers to insert a toast:
Toastr::warning($message, $title = null, $options = []) - add a warning toastToastr::error($message, $title = null, $options = []) - add an error toastToastr::info($message, $title = null, $options = []) - add an info toastToastr::success($message, $title = null, $options = []) - add a success toastToastr::add($type: warning|error|info|success, $message, $title = null, $options = []) - add a toastToastr::clear() - clear all current toastsYou can set custom options for Toastr. Run:
php artisan vendor:publish
to publish the config file for Toastr. Then edit config/toastr.php and set the options array to whatever you want to pass to Toastr. These options are set as the default options and can be overridden by passing an array of options to any of the methods in the Usage section.
For a list of available options, see toastr.js' documentation.