mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2025-01-01 16:45:31 +03:00
12 lines
173 B
PHP
12 lines
173 B
PHP
|
<?php namespace Tests\Tmp;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class TestingModel extends Model {
|
||
|
|
||
|
protected $fillable = [];
|
||
|
|
||
|
protected $dates = ["started_at"];
|
||
|
|
||
|
}
|