JsWizard
JsWizard

Reputation: 1749

Only show button to loged-in user in Laravel

If I logged in as John, how can I show only the red button for John instead of Susan's one?

Test system environment: Win10, Laravel5.4, Mysql5.7.19.

enter image description here

<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

Upvotes: 4

Views: 1205

Answers (3)

user8763858
user8763858

Reputation:

Adding Role system will make this more easier so consider adding role system

Upvotes: 0

Alexey Mezenin
Alexey Mezenin

Reputation: 163938

Use Laravel policies feature:

@can('delete', $job)
    {!! Form::button('<i class="glyphicon glyphicon-stop"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure to Stop?')"]) !!}
@endcan

or:

@if (auth()->user()->can('delete', $job))
    {!! Form::button('<i class="glyphicon glyphicon-stop"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure to Stop?')"]) !!}
@endif

Upvotes: 4

James
James

Reputation: 16349

From what I understand, you only want to show that button on the rows that belong to that user.

This is a slight assumption, but I assume there is some sort of user identifier on that job row - ideally something like a user_id that links the row to the associated user.

If that's the case then you can just use a simple if statement for that button.

Something like the below would work with what you have:

@if ($job->user_id == Auth::id())
    {!! Form::button('<i class="glyphicon glyphicon-stop"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure to Stop?')"]) !!}
@endif

If you don't use a user identifier and only store the username then something like the below would work - using the user_name (I assume this is unique?):

@if ($job->user_name == Auth::user()->user_name)
    {!! Form::button('<i class="glyphicon glyphicon-stop"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure to Stop?')"]) !!}
@endif

Upvotes: 3

Related Questions