PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
GeoLocale
/
Entities
<?php namespace Modules\GeoLocale\Entities; use Illuminate\Database\Eloquent\Model; /** * Division Locale */ class DivisionLocale extends Model { /** * The database table doesn't use 'created_at' and 'updated_at' so we disable it from Inserts/Updates. * * @var bool */ public $timestamps = false; /** * The database table used by the model. * * @var string */ protected $table = 'geolocale_divisions_locale'; /** * Relation with Division model * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function division() { return $this->belongsTo(Division::class); } }
[-] Language.php
[edit]
[-] City.php
[edit]
[-] ContinentLocale.php
[edit]
[+]
..
[-] Country.php
[edit]
[-] CityLocale.php
[edit]
[-] Continent.php
[edit]
[-] Division.php
[edit]
[-] DivisionLocale.php
[edit]
[-] CountryLocale.php
[edit]