| Zeile 3... |
Zeile 3... |
| 3 |
namespace App\Models;
|
3 |
namespace App\Models;
|
| Zeile 4... |
Zeile 4... |
| 4 |
|
4 |
|
| 5 |
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
5 |
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
| Zeile -... |
Zeile 6... |
| - |
|
6 |
use Illuminate\Database\Eloquent\Model;
|
| - |
|
7 |
|
| - |
|
8 |
/**
|
| - |
|
9 |
* App\Models\Country
|
| - |
|
10 |
*
|
| - |
|
11 |
* @property int $id
|
| - |
|
12 |
* @property int $continent_id
|
| - |
|
13 |
* @property string $name_de
|
| - |
|
14 |
* @property string $name_uk
|
| - |
|
15 |
* @property string $capital
|
| - |
|
16 |
* @property string $isocode
|
| - |
|
17 |
* @property string $kfz
|
| - |
|
18 |
* @property string $iso-2
|
| - |
|
19 |
* @property string $iso-3
|
| - |
|
20 |
* @property string $ioc
|
| - |
|
21 |
* @property string $tld
|
| - |
|
22 |
* @property int $currency_id
|
| - |
|
23 |
* @property string $phone
|
| - |
|
24 |
* @property int $in_eu
|
| - |
|
25 |
* @property int $rank
|
| - |
|
26 |
* @method static \Illuminate\Database\Eloquent\Builder|Country newModelQuery()
|
| - |
|
27 |
* @method static \Illuminate\Database\Eloquent\Builder|Country newQuery()
|
| - |
|
28 |
* @method static \Illuminate\Database\Eloquent\Builder|Country query()
|
| - |
|
29 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCapital($value)
|
| - |
|
30 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereContinentId($value)
|
| - |
|
31 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCurrencyId($value)
|
| - |
|
32 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereId($value)
|
| - |
|
33 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereInEu($value)
|
| - |
|
34 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIoc($value)
|
| - |
|
35 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso2($value)
|
| - |
|
36 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso3($value)
|
| - |
|
37 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIsocode($value)
|
| - |
|
38 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereKfz($value)
|
| - |
|
39 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereNameDe($value)
|
| - |
|
40 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereNameUk($value)
|
| - |
|
41 |
* @method static \Illuminate\Database\Eloquent\Builder|Country wherePhone($value)
|
| - |
|
42 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereRank($value)
|
| - |
|
43 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereTld($value)
|
| 6 |
use Illuminate\Database\Eloquent\Model;
|
44 |
* @mixin \Eloquent
|
| 7 |
|
45 |
*/
|
| 8 |
class Country extends Model
|
46 |
class Country extends Model
|
| Zeile 9... |
Zeile 47... |
| 9 |
{
|
47 |
{
|