<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Smsnotification extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'message',
'mobile_numbers',
'member',
'notification_type',
'created_at',
'updated_at',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $casts = [
'mobile_numbers' => 'array',
];
}