PHP code example of waziri123 / waziri-livewire-toast
1. Go to this page and download the library: Download waziri123/waziri-livewire-toast 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/ */
waziri123 / waziri-livewire-toast example snippets
$this->dispatch('showWarning', 'Record deleted Successfully')->to('livewire-toast'); //Will show Success Message
$this->dispatch('showError', 'There was an Error!')->to('livewire-toast'); //Will show error. showError, showWarning, showInfo, showSuccess are supported
wire:click="$dispatchTo('livewire-toast', 'show', {params: 'Project Added Successfully' })" //Will show Success Message
wire:click="$dispatchTo('livewire-toast', 'showError', {message: 'There was an Error!' })" //Will show error. showError, showWarning, showInfo, showSuccess are supported
bash
php artisan vendor:publish --tag=config
bash
php artisan vendor:publish --tag=views
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.