Files
opensem/app/Models/Shop/DistributionChannel.php
Ludovic CANDELLIER 39c80ce6d1 add shipping rules
2023-07-16 14:45:42 +02:00

21 lines
391 B
PHP

<?php
namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
use Staudenmeir\EloquentHasManyDeep\HasRelationships;
class DistributionChannel extends Model
{
use HasRelationships;
protected $guarded = ['id'];
protected $table = 'shop_distribution_channel';
public function tariff_generics()
{
return $this->hasMany(TariffGeneric::class);
}
}