mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-29 22:46:12 +00:00
12 lines
158 B
PHP
12 lines
158 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Concert extends Model
|
|
{
|
|
protected $guarded = [];
|
|
protected $dates = ['date'];
|
|
}
|