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/Contact.php

38 lines
807 B
PHTML

3 months ago
<?php
namespace App\Models;
use Database\Factories\ContactFactory;
3 months ago
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class Contact extends Model
{
/** @use HasFactory<ContactFactory> */
3 months ago
use HasFactory, SoftDeletes;
3 months ago
protected $fillable = [
'customer_id',
'first_name',
'last_name',
'email',
'phone',
'notes',
];
3 months ago
public function getFullNameAttribute(): string
{
return $this->first_name.' '.$this->last_name;
}
/**
* @return BelongsTo<Customer, self>
*/
3 months ago
public function customer(): BelongsTo
{
3 months ago
return $this->belongsTo(Customer::class);
3 months ago
}
}