%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/Subscription.php

<?php

namespace App\Models;

use App\Presenters\SubscriptionPresenter;
use Laracodes\Presenter\Traits\Presentable;

class Subscription extends BaseModel
{
    use Presentable;

    protected $presenter = SubscriptionPresenter::class;

    protected $fillable = [
        'firstname',
        'lastname',
        'email',
        'token',
        'is_active',
    ];

    protected $casts = [
        'id'        => 'integer',
        'firstname' => 'string',
        'lastname'  => 'string',
        'email'     => 'string',
        'is_active' => 'boolean',
        'token'     => 'string',
    ];
    protected $dates = [

    ];


}

Zerion Mini Shell 1.0