Added Yandex Maps
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?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';
|
||||
}
|
||||
Reference in New Issue
Block a user