balfour/laravel-flash-messages

A super lightweight library for handling flash messages in Laravel

0.0.1-alpha 2020-02-24 12:58 UTC

This package is auto-updated.

Last update: 2024-04-24 22:44:40 UTC


README

A super lightweight library for handling flash messages in Laravel.

This library is in early release and is pending unit tests.

Installation

composer require balfour/laravel-flash-messages

Usage

use Balfour\LaravelFlashMessages\FlashMessages;

// resolve the message container
$flash = app(FlashMessages::class);

// or
$flash = app('flash');

// flash a message
$flash->flash('error', 'You are not authorized.');

// flash a message with a title
$flash->flash('error', 'You are not authorized.', 'Oopsie');

// add a message to the current container
// this message won't flash to the next request
$flash->add('error', 'You are not authorized.');

// retrieve all flash message
$messages = $flash->all();

// wipe all messages
$messages->clear();