You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
topnotch_website/app/Models/Customer.php

42 lines
864 B
PHTML

3 months ago
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
3 months ago
use Illuminate\Database\Eloquent\Relations\HasMany;
3 months ago
use Illuminate\Database\Eloquent\SoftDeletes;
class Customer extends Model
{
3 months ago
use HasFactory, SoftDeletes;
3 months ago
protected $fillable = [
'company_name',
'internal_name',
'shipping_address',
'billing_address',
'phone',
];
3 months ago
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);
}
3 months ago
}