From 0172fe6403d938e6b7da98c3371299a3ccf16aa1 Mon Sep 17 00:00:00 2001 From: Ivan Nieto Vivanco Date: Thu, 11 Aug 2022 13:02:25 -0500 Subject: [PATCH] Add Notifiable trait to the CheckoutAcceptance Model --- app/Models/CheckoutAcceptance.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Models/CheckoutAcceptance.php b/app/Models/CheckoutAcceptance.php index 1f2af711f8..4c6e06e34f 100644 --- a/app/Models/CheckoutAcceptance.php +++ b/app/Models/CheckoutAcceptance.php @@ -5,10 +5,11 @@ namespace App\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; +use Illuminate\Notifications\Notifiable; class CheckoutAcceptance extends Model { - use SoftDeletes; + use SoftDeletes, Notifiable; protected $casts = [ 'accepted_at' => 'datetime',