%PDF- %PDF-
Direktori : /var/www/html/geotechnics/api/app/Models/ |
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', ]; }