mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-29 15:25:28 +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"];
|
|
|
|
}
|