love_php/app/Models/Match/TouristOrder.php

15 lines
295 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models\Match;
use Illuminate\Database\Eloquent\Model;
class TouristOrder extends Model
{
public $table = "tourist_orders";
public function c_activity(){
return $this->belongsTo(CommunityActivity::class,'type_id','id')->where('class', 'one');
}
}