DIR: /var/www/devs.lapieza.net/app/Models/ |
Current File : /var/www/devs.lapieza.net/app/Models/BusinessSetting.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; /** * @property string $type * @property string $value * @property string $lang */ class BusinessSetting extends Model { protected $fillable = [ 'type', 'value', 'lang' ]; } |