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