arvin/toastr-for-laravel

toastr.js for laravel5

1.0 2017-03-27 03:37 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:20:51 UTC


README

README

Installation

  1. Run composer require arvin/toastr-for-laravel
  2. Add Arvin\Toastr\ToastrServiceProvider::class, to providers in config/app.php
  3. Add 'Toastr' => Arvin\Toastr\Facades\Toastr::class, to aliases in config/app.php
  4. 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