| 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\ShippingGroup
|
| - |
|
10 |
*
|
| - |
|
11 |
* @property int $id
|
| - |
|
12 |
* @property string $name
|
| - |
|
13 |
* @property string $conditions
|
| - |
|
14 |
* @property string $icon
|
| - |
|
15 |
* @property int $rank
|
| - |
|
16 |
* @property string $shipping_text
|
| - |
|
17 |
* @property string $created_by
|
| - |
|
18 |
* @property string $updated_by
|
| - |
|
19 |
* @property \Illuminate\Support\Carbon|null $created_at
|
| - |
|
20 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
| - |
|
21 |
* @method static \Database\Factories\ShippingGroupFactory factory($count = null, $state = [])
|
| - |
|
22 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup newModelQuery()
|
| - |
|
23 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup newQuery()
|
| - |
|
24 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup query()
|
| - |
|
25 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereConditions($value)
|
| - |
|
26 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereCreatedAt($value)
|
| - |
|
27 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereCreatedBy($value)
|
| - |
|
28 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereIcon($value)
|
| - |
|
29 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereId($value)
|
| - |
|
30 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereName($value)
|
| - |
|
31 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereRank($value)
|
| - |
|
32 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereShippingText($value)
|
| - |
|
33 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereUpdatedAt($value)
|
| - |
|
34 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereUpdatedBy($value)
|
| 6 |
use Illuminate\Database\Eloquent\Model;
|
35 |
* @mixin \Eloquent
|
| 7 |
|
36 |
*/
|
| 8 |
class ShippingGroup extends Model
|
37 |
class ShippingGroup extends Model
|
| 9 |
{
|
38 |
{
|