Edit File: SMS.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class SMS extends Model { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = ['name','active','sender_name','key' ,'user_name' , 'password']; }
Back to File Manager