%PDF- %PDF-
Direktori : /var/www/html/news/app/Models/ |
Current File : /var/www/html/news/app/Models/Notification.php |
<?php namespace App\Models; use App\Presenters\NotificationPresenter; use Laracodes\Presenter\Traits\Presentable; class Notification extends BaseModel { use Presentable; protected $presenter = NotificationPresenter::class; protected $fillable = [ 'code', 'subject', 'greeting', 'body', 'thank_you', ]; protected $casts = [ 'id' => 'integer', 'code' => 'string', 'subject' => 'string', 'greeting' => 'string', 'body' => 'string', 'thank_you' => 'string', ]; protected $dates = [ ]; }