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
PHP

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