Files
freeu-project/app/Models/LeadAttachment.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

18 lines
348 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class LeadAttachment extends Model
{
use HasFactory;
protected $fillable = ['leads_id','type','path','created_by'];
public function admin(){
return $this->belongsTo(User::class,'created_by');
}
}