PHP code example of kcdev / laravel-alert

1. Go to this page and download the library: Download kcdev/laravel-alert library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kcdev / laravel-alert example snippets


class MyController
{
    public function store()
    {
        // …

        alert('My message');

        return back();
    }
}

class MyController
{
    public function store()
    {
        // …

        alert('My message');

        return back();
    }
}

class MyController
{
    public function store()
    {
        // …

        alert()->success('My message');

        return back();
    }
}
blade
@if (alert()->check())
    <div class="{{ alert()->success ? 'success' : 'error' }}">
        {{ alert()->message }}
    </div>
@endif