oyzmer / toastr

toastr for laravel laravel5.*

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

toastr

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

About

toastr for laravel laravel5.*


Languages

Language:PHP 95.4%Language:HTML 4.6%