File "NotificationLog.php"
Full Path: /home/trinadezambia/public_html/gambling/app/Models/NotificationLog.php
File size: 232 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use App\Traits\ApiQuery;
use Illuminate\Database\Eloquent\Model;
class NotificationLog extends Model
{
use ApiQuery;
public function user(){
return $this->belongsTo(User::class);
}
}