1. Go to this page and download the library: Download yoeunes/notify 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/ */
yoeunes / notify example snippets
// Display an info toast with no title
notify()->info('Are you the 6 fingered man?')
namespace App\Http\Controllers;
use App\Post;
use App\Http\Requests\PostRequest;
use Illuminate\Database\Eloquent\Model;
class PostController extends Controller
{
public function store(PostRequest $request)
{
$post = Post::create($request->only(['title', 'body']));
if ($post instanceof Model) {
notify()->success('Data has been saved successfully!');
return redirect()->route('posts.index');
}
notify()->error('An error has occurred please try again later.');
return back();
}
}
// Set a warning toast, with no title
notify()->warning('My name is Inigo Montoya. You killed my father, prepare to die!')
// Set a success toast, with a title
notify()->success('Have fun storming the castle!', 'Miracle Max Says')
// Set an error toast, with a title
notify()->error('I do not think that word means what you think it means.', 'Inconceivable!')
// Override global config options from 'config/notify.php'
notify()->success('We do have the Kapua suite available.', 'Turtle Bay Resort', ['timeOut' => 5000])
// for pnotify driver
notify()->alert('We do have the Kapua suite available.', 'Turtle Bay Resort', ['timeOut' => 5000])
notify()->info('Are you the 6 fingered man?')->success('Have fun storming the castle!')->warning('doritos');