19 lines
355 B
PHP
19 lines
355 B
PHP
<?php
|
|
|
|
namespace App\Models\ORM;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Place extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
const CREATED_AT = 'DateOfCreation';
|
|
const UPDATED_AT = 'UpdateDate';
|
|
const DELETED_AT = 'DeleteDate';
|
|
|
|
protected $primaryKey = 'id';
|
|
protected $table = 'Place';
|
|
}
|