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