1. Go to this page and download the library: Download abather/model-notification 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/ */
namespace App\Models;
use Abather\ModelNotification\Contracts\Notifier;
use Illuminate\Database\Eloquent\Model;
class Bill extends Model implements Notifier
{
use \Abather\ModelNotification\Notifier;
}
Bill::makeTemplateMessage()
->key("new")
->channel("sms")
->lang("ar")
->template("You have a new bill [id], with an amount of: [amount]")
->save();
Bill::makeTemplateMessage()
->
Bill::makeTemplateMessage()
->prob(["title" => "New bill generated with number [id]", "icon" => "bill"]);