こんにちは私は最後の24時間に入金し、引き出した10人を見せたいと思います。私はそこにuser_idと量を表示することができますが、user_idの代わりにユーザー名が必要です。LaravelのユーザーIDからユーザー名を取得する方法は?
<div class="col-md-6">
<div class="text-center"><h4 class="text-success">Last 10 Investors</h4></div>
<table class="table text-white" >
<tbody>
@foreach(\App\Fund::where('created_at', '>', \Carbon\Carbon::now()->subHours(24))->orderBy('id', 'DESC')->take(10)->get() as $fund)
<tr>
<th scope="row"></th>
<td>{{ $fund->user_id }}</td>
<td class="text-center text-warning">{{ $fund->total }}</td>
<td class="text-right"><img src="https://adsok.com/img/btc.png" alt="Bitcoin"> <i><b>bitcoin</b></i><br></td><br>
</tr>@endforeach
</tbody>
</table>
:それは撤回
のためではない資金のために働いている
私はこのコードを持って何名$ファンドcolumと$のユーザーがそれはwithdraeを持っていません。
<div class="col-md-6">
<div class="text-center"><h4 class="text-success">Last 10 Investors</h4></div>
<table class="table text-white" >
<tbody>
@foreach(\App\Withdraw::where('created_at', '>', \Carbon\Carbon::now()->subHours(24))->orderBy('id', 'DESC')->take(10)->get() as $withdraw)
<tr>
<th scope="row"></th>
<td>{{ $withdraw->user_id }}</td>
<td class="text-center text-warning">{{ $withdraw->total }}</td>
<td class="text-right"><img src="https://adsok.com/img/btc.png" alt="Bitcoin"> <i><b>bitcoin</b></i><br></td><br>
</tr>@endforeach
</tbody>
</table>
を撤回するために。
私は両方のファンドで同じ関係を貼り付けし、撤回しているモデル
public function user()
{
return $this->belongsTo('App\User', 'user_id');}
すでにユーザーリレーションを設定している場合は、 '$ fund-> user-> id'または' $ fund-> user-> name'を使用してユーザーデータを呼び出すことができます。 [こちら](https://laravel.com/docs/5.5/eloquent-relationships#one-to-many-inverse)に記載されています。 – vozaldi