PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
GeoLocale
/
Entities
<?php namespace Modules\GeoLocale\Entities; use Illuminate\Database\Eloquent\Model; use Modules\GeoLocale\Traits\GeoLocaleTrait; /** * Language. */ class Language extends Model { use GeoLocaleTrait; /** * 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_languages'; }
[-] 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]