love_php/app/Models/Earning.php

14 lines
205 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Earning extends Model
{
public function order()
{
return $this->hasOne(Order::class, 'id', 'order_id');
}
}