我正在查詢作爲if語句的一部分的行數。如何使用口才能查詢Laravel 5.2中的行數?
我用的代碼如下:
$company = DB::table('customers')->where('business', 'Auth::user()->name')->value('business');
@if (count($company==0)
<div class="alert alert-danger" role="alert">
<strong>Please click here to register full company details</strong>
@endif
UPDATE
{{$countCompany = App\customers::where('business', Auth::user()->name)->count()}}
@if ($countCompany==0)
<div class="alert alert-danger" role="alert">
<strong>Please click here to register full company details</strong>
@endif
謝謝
謝謝@Rishi我已更新使用您的技術我正在「調用一個非對象的成員函數count()」 我試圖在部分內部的消息中執行此操作(如果有幫助的話)。 –
@JamesParsons:你的問題解決了嗎? – C2486