LaravelPackages.net
Acme Inc.
Toggle sidebar
jchegenye/myflashalert

A simplified flash messaging alert for your Laravel application using Twitter Bootstrap 4

59
2
v1.0.2
About jchegenye/myflashalert

jchegenye/myflashalert is a Laravel package for a simplified flash messaging alert for your laravel application using twitter bootstrap 4. It currently has 2 GitHub stars and 59 downloads on Packagist (latest version v1.0.2). Install it with composer require jchegenye/myflashalert. Discover more Laravel packages by jchegenye or browse all Laravel packages to compare alternatives.

Last updated

Simplified Flash Messaging Alert

Latest Version on Packagist Total Downloads

A simplified flash messaging for your Laravel application using Twitter Bootstrap 4 (Alerts).

Installation

Via Composer

$ composer require jchegenye/myflashalert

Usage

Make sure you add Bootstrap to your project. You can choose to either use BootstrapCDN provided for free (see below), download the source files here or write your own CSS based on these classes.

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

Inside your controllers, you can use any of the HTTP Redirects as mentioned here except Redirecting With Flashed Session Data. Instead replace ->with() method with any of methods i.e ->success() provided by this package, see below.

Examples



    //Redirecting to named routes

        public function store()
        {
            return redirect()->route('user')->success('Successfully added!');
        }


    //Other redirects you can use ...

    return redirect('user/edit')->success('Successfully edited!');
    return redirect('user/delete')->warning('Delete?, continue...');
    return redirect()->back()->error('Something went wrong!');

    //... and much more redirects.

To display flashed message in session, add below inside your view(s).

@include('myflashalert::message')

Methods available

| Methods | Description | | --- | --- | | ->success() | Flash a success message | | ->error() | Flash error message | | ->warning() | Flash a warning message | | ->info() | Flash info message |

License

Please see the license file for more information.

Star History Chart