Added Yandex Maps

This commit is contained in:
amikhaylov
2026-05-15 18:39:04 +03:00
parent 443a745029
commit 0c06d83b0b
5 changed files with 104 additions and 3 deletions
+18
View File
@@ -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';
}