hen8y/laravel-flash

Flash notification for laravel

Installs: 28

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

v2.0.3 2024-04-04 11:23 UTC

This package is auto-updated.

Last update: 2024-05-22 13:43:07 UTC


README

Demo

Checkout demo of the laravel-flash

Installation

PHP 8.0, LARAVEL, and Composer are required.

To get the latest version of Laravel Flash, simply require it

composer require hen8y/laravel-flash

Or add the following line to the require block of your composer.json file.

"hen8y/laravel-flash": "^2."

You'll then need to run composer install or composer update to download it and have the autoloader updated.

Once Laravel Flash is installed, you need to register the service provider. Open up config/app.php and add the following to the providers key.

'providers' => [
    ...
    Hen8y\Flash\FlashServiceProvider::class,
    ...
]

To reload your application run the following command:

composer dump-autoload

You can publish the configuration file and assets by running:

If you're also upgrading from v1.* make sure to delete the public/vendor/hen8y/laravel-flash folder and run this too

    php artisan vendor:publish --provider="Hen8y\Flash\LaravelFlashServiceProvider"

Details of the Config file

The configuration-file flash.php would be published in your config dirctory after running the above command:

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Timeout
    |--------------------------------------------------------------------------
    |
    | Specifies the duration, in seconds, for which the notification will remain visible.
    |
    */
    "timeout" => 2000,
    /*
    |--------------------------------------------------------------------------
    | Enable Cancel Button
    |--------------------------------------------------------------------------
    |
    | Enable the close notification button
    |
    |
    */
    "enable_cancel_btn" => true,

     /*
    |--------------------------------------------------------------------------
    | Cancel Button Type
    |--------------------------------------------------------------------------
    |
    | Choose if the flash notification should be svg or text.
    |
    */
    "cancel_btn_type" => "svg",
    /**
     * If text is chosen as btn_type, enter the text to be chosen below or
     * leave default
     *
     */

    "btn_text" => "close",

    /*
    |--------------------------------------------------------------------------
    | Flash Theme Colors
    |--------------------------------------------------------------------------
    |
    | Specify the theme colors you want for your flash notification.
    | If dark mode if enabled this would be used as light mode theme
    |
    | MUST BE HEX.
    |
    */
    "theme" => [
        "info" => "#232113",
        "success" => "#166534",
        "error" => "#b91c1c",
    ],

    /*
    |--------------------------------------------------------------------------
    | Enable Dark Mode
    |--------------------------------------------------------------------------
    |
    | Set dark mode to true and specify the colors you want for your dark mode.
    |
    | MUST BE HEX.
    |
    */
    "enable_dark_mode" => false,

    "dark-theme" => [
        "info" => "#232113",
        "success" => "#22c55e",
        "error" => "#b91c1c",
    ]

];

You can define the timeout, flash theme colors for your flash notification in the config file

Usage

  • Include the flash component to your main layout immediately after your body tag <x-flash::flash />
  • Add @flashCss in your main layout before all css files.

Example

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Laravel</title>
        @flashCss
        {{-- Your Css here --}}
    </head>
    <body class="antialiased">
        <x-flash::flash />
        <div>

        <!-- Your content -->

        </div>
    </body>
</html>

Basic Usage

To display a flash message, you call the flash method. it accepts 2 parameter

  • Type ( There 3 types of notifications: Info, success, error )
  • Message.

The message type must always be lower case

Example Usage:

    Route::get('/test', function () {

        flash('info', 'This is an info message');

        return redirect('/');

    });

Contributing

Please feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.

Don't forget to follow me on twitter!

Thanks! Ogbonna Henry (hen8y).

License

The MIT License (MIT). Please see License File for more information.