%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/geotechnics/api/app/Models/
Upload File :
Create Path :
Current File : /var/www/html/geotechnics/api/app/Models/Subscription.php

<?php

namespace App\Models;

use Illuminate\Notifications\Notifiable;

/**
 * @property integer id
 * @property string email
 * @property boolean is_subscribed
 */
class Subscription extends BaseModel
{
    use Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'email',
        'is_subscribed',
    ];

    protected $casts = [
        'email'         => 'string',
        'is_subscribed' => 'boolean',
    ];

}

Zerion Mini Shell 1.0