| Current Path : /home/zada/www/app/Models/ |
| Current File : /home/zada/www/app/Models/CommissionHistory.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Traits\PreventDemoModeChanges;
class CommissionHistory extends Model
{
use PreventDemoModeChanges;
public function order() {
return $this->hasOne(Order::class, 'id', 'order_id');
}
}