| 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\ShippingCountry
|
| - |
|
10 |
*
|
| - |
|
11 |
* @property int $id
|
| - |
|
12 |
* @property int|null $shipping_id
|
| - |
|
13 |
* @property int|null $country_id
|
| - |
|
14 |
* @property \Illuminate\Support\Carbon|null $created_at
|
| - |
|
15 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
| - |
|
16 |
* @method static \Database\Factories\ShippingCountryFactory factory($count = null, $state = [])
|
| - |
|
17 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry newModelQuery()
|
| - |
|
18 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry newQuery()
|
| - |
|
19 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry query()
|
| - |
|
20 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereCountryId($value)
|
| - |
|
21 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereCreatedAt($value)
|
| - |
|
22 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereId($value)
|
| - |
|
23 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereShippingId($value)
|
| - |
|
24 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereUpdatedAt($value)
|
| 6 |
use Illuminate\Database\Eloquent\Model;
|
25 |
* @mixin \Eloquent
|
| 7 |
|
26 |
*/
|
| 8 |
class ShippingCountry extends Model
|
27 |
class ShippingCountry extends Model
|
| 9 |
{
|
28 |
{
|