如果我以約翰身份登錄,如何僅顯示John的紅色按鈕而不顯示Susan的紅色按鈕?僅在Laravel中顯示按鈕以便內置用戶
測試系統環境:Win10,Laravel5.4,Mysql5.7.19。
<table class="table table-responsive" id="jobs-table">
...
@foreach($jobs as $job)
<tr>
<td>{!! $job->user_name !!}</td>
...
<td>{!! $job->created_at !!}</td>
<td>
{!! Form::open(['route' => ['jobs.destroy', $job->id], 'method' => 'delete']) !!}
<div class='btn-group'>
<a href="{!! route('jobs.show', [$job->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-eye-open"></i></a>
<a href="{!! route('jobs.edit', [$job->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-edit"></i></a>
{!! Form::button('<i class="glyphicon glyphicon-stop"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure to Stop?')"]) !!}
</div>
{!! Form::close() !!}
</td>
</tr>
@endforeach
既約翰和蘇珊都有不同的角色? – urfusion
@fusion,還沒有使用角色系統。謝謝。 – Magnetic
嗨兩者之間有什麼區別? – Maraboc