Files
airtime-reseller/app/Models/Topup.php
Kwesi Banson Jnr 2cfcfade4e Initial commit
2026-08-04 14:50:01 +00:00

24 lines
366 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Topup extends Model
{
public $table = "top_ups";
public function merchant()
{
return $this->belongsTo('App\Models\Merchant', 'merchant_id', 'id');
}
public function admin()
{
return $this->belongsTo('App\User', 'created_by', 'id');
}
}