oyzm/toastr-for-laravel

There is no license information available for the latest version (dev-master) of this package.

toastr.js for laravel5.2

dev-master 2016-08-28 07:28 UTC

This package is not auto-updated.

Last update: 2024-04-25 17:15:10 UTC


README

toastr for laravel laravel5.*

#Installation

Run :

composer require ryan/toastr-for-laravel

Add providers in config/app.php

Oyzm\Toastr\ToastrServiceProvider::class

Add aliases in config/app.php

'Toastr' => Oyzm\Toastr\Facades\Toastr::class

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() ;