trs_matrimony/app/Models/ProfileMatch.php
2024-08-22 09:31:12 +05:30

14 lines
219 B
PHP

<?php
namespace App\Models;
use App\Models\User;
use Illuminate\Database\Eloquent\Model;
class ProfileMatch extends Model
{
public function user(){
return $this->belongsTo(User::class, 'match_id');
}
}