如何加入table之后?

How to join with table after?

我有以下模特要求:

$order = Order::findOrFail($request->order_id);

点赞后如何调用with("user")

$user = $order->with("user");

if($user->user()->count()){
    echo "ok";
}

使用 load() 方法而不是 with() 延迟加载数据:

$user = $order->load('user');