Updates for addon/modules to make it easier to create APIs

This commit is contained in:
Nabeel Shahzad
2018-02-08 19:09:36 -06:00
parent b4ea82f327
commit bcc6be0d29
18 changed files with 216 additions and 44 deletions

View File

@@ -2,9 +2,10 @@
namespace $NAMESPACE$;
use Illuminate\Database\Eloquent\Model;
use App\Models\BaseModel;
class $CLASS$ extends Model
class $CLASS$ extends BaseModel
{
public $table = '';
protected $fillable = $FILLABLE$;
}