%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/news/app/Models/
Upload File :
Create Path :
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 = [

    ];

}

Zerion Mini Shell 1.0