topnotch_website/app/Models/Customer.php

42 lines
864 B
PHP
Raw Normal View History

2024-09-03 14:38:34 -07:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
2024-09-03 15:15:57 -07:00
use Illuminate\Database\Eloquent\Relations\HasMany;
2024-09-03 14:38:34 -07:00
use Illuminate\Database\Eloquent\SoftDeletes;
class Customer extends Model
{
use SoftDeletes, HasFactory;
protected $fillable = [
'company_name',
'internal_name',
'shipping_address',
'billing_address',
'phone',
];
2024-09-03 15:15:57 -07:00
public function contacts(): HasMany
{
return $this->hasMany(Contact::class);
}
public function packingSlips(): HasMany
{
return $this->hasMany(PackingSlip::class);
}
public function shippingEntries(): HasMany
{
return $this->hasMany(ShippingEntry::class);
}
public function orders(): HasMany
{
return $this->hasMany(Order::class);
}
2024-09-03 14:38:34 -07:00
}