Subversion-Projekte lars-tiefland.webanos.marine-sales.de

Revision

Revision 2 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 2 Revision 308
Zeile 9... Zeile 9...
9
 
9
 
10
class Shipping extends Model
10
class Shipping extends Model
11
{
11
{
Zeile -... Zeile 12...
-
 
12
    use HasFactory;
-
 
13
 
-
 
14
    protected $fillable = array(
-
 
15
        "name",
-
 
16
        "rank",
-
 
17
        "shipping_group_id",
-
 
18
        "island_shipping",
-
 
19
        "price",
-
 
20
        "status",
-
 
21
        "calc_price_from",
-
 
22
        "calc_price_to",
-
 
23
        "calc_weight_from",
-
 
24
        "calc_weight-to",
12
    use HasFactory;
25
    );
13
 
26
 
14
    public function shipping_group()
27
    public function shipping_group()
15
    {
28
    {
16
        return $this->belongsTo(ShippingGroup::class);
29
        return $this->belongsTo(ShippingGroup::class);