@foreach($rolePermissions as $rolePermission) @endforeach
Role Id Permission Id Action
{{ $rolePermission->role_id }} {{ $rolePermission->permission_id }} {!! Form::open(['route' => ['rolePermissions.destroy', $rolePermission->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}