Revision 2 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Models;use Illuminate\Database\Eloquent\Factories\HasFactory;use Illuminate\Database\Eloquent\Model;/*** App\Models\Country** @property int $id* @property int $continent_id* @property string $name_de* @property string $name_uk* @property string $capital* @property string $isocode* @property string $kfz* @property string $iso-2* @property string $iso-3* @property string $ioc* @property string $tld* @property int $currency_id* @property string $phone* @property int $in_eu* @property int $rank* @method static \Illuminate\Database\Eloquent\Builder|Country newModelQuery()* @method static \Illuminate\Database\Eloquent\Builder|Country newQuery()* @method static \Illuminate\Database\Eloquent\Builder|Country query()* @method static \Illuminate\Database\Eloquent\Builder|Country whereCapital($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereContinentId($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereCurrencyId($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereId($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereInEu($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereIoc($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso2($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso3($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereIsocode($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereKfz($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereNameDe($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereNameUk($value)* @method static \Illuminate\Database\Eloquent\Builder|Country wherePhone($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereRank($value)* @method static \Illuminate\Database\Eloquent\Builder|Country whereTld($value)* @mixin \Eloquent*/class Country extends Model{use HasFactory;protected $connection = "cms";}