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

33 lines
671 B
PHTML

3 months ago
<?php
namespace App\Models;
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 SoftDeletes, HasFactory;
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;
}
3 months ago
public function customer(): BelongsTo
{
return $this->belongsTo(Customer::class);
}
}