<?php
namespace DummyNamespace;
use Illuminate\Database\Eloquent\Model;
class DummyClass extends Model
{
    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = '{{table}}';
    /**
     * Attributes that should be mass-assignable.
     *
     * @var array
     */
    protected $fillable = {{fillable}};
}