File "Transaction.php"

Full Path: /home/trinadezambia/public_html/gambling/app/Models/Transaction.php
File size: 193 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Transaction extends Model
{
    public function user()
    {
        return $this->belongsTo(User::class);
    }

}