File "EnquiryReply.php"
Full Path: /home/bettaeza/flyinsyria.com/Booking/Models/EnquiryReply.php
File size: 398 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Booking\Models;
use App\BaseModel;
use App\User;
class EnquiryReply extends BaseModel
{
protected $table = 'bravo_enquiry_replies';
public function enquiry()
{
return $this->belongsTo(Enquiry::class,'parent_id');
}
public function author(){
return $this->belongsTo(User::class,'user_id')->withDefault();
}
}