%PDF- %PDF-
Direktori : /var/www/html/news/app/Models/ |
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 = [ ]; }