编程语言
首页 > 编程语言> > javascript – 只显示Laravel中loged-in用户的按钮

javascript – 只显示Laravel中loged-in用户的按钮

作者:互联网

如果我以John身份登录,我怎样才能显示John的红色按钮而不是Susan的红色按钮?

测试系统环境: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

解决方法:

据我所知,您只想在属于该用户的行上显示该按钮.

这是一个轻微的假设,但我假设在该作业行上存在某种用户标识符 – 理想情况下类似于将行链接到关联用户的user_id.

如果是这种情况,那么你可以只为该按钮使用一个简单的if语句.

像下面这样的东西可以用你拥有的东西:

@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

如果您不使用用户标识符并且只存储用户名,那么类似下面的内容将起作用 – 使用user_name(我假设这是唯一的?):

@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

标签:laravelcollective,javascript,php,laravel
来源: https://codeday.me/bug/20190828/1750081.html