PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
Shipping
/
Entities
<?php /** * @package ShippingMethod model * @author TechVillage <support@techvill.org> * @contributor Al Mamun <[almamun.techvill@gmail.com]> * @created 19-07-2022 */ namespace Modules\Shipping\Entities; use App\Models\Model; class ShippingMethod extends Model { /** * timestamps * @var boolean */ public $timestamps = false; /** * Foreign key with ShippingZoneShippingMethod model * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function shippingZoneShippingMethods() { return $this->hasMany(ShippingZoneShippingMethod::class); } }
[-] ShippingZoneGeolocale.php
[edit]
[+]
..
[-] ShippingClass.php
[edit]
[-] ShippingMethod.php
[edit]
[-] ShippingZoneShippingClass.php
[edit]
[-] ShippingZoneShippingMethod.php
[edit]
[-] ShippingZone.php
[edit]