@extends('layouts.app') @section('content')

Permissions @can('ADD PERMISSION') Create @endcan

@if(\Session::has('success'))
{{\Session::get('success')}}
@endif
{{ $permissions->links("pagination::bootstrap-4") }} @if($permissions->hasMorePages() || (isset($input['searchvalue']) && $input["searchvalue"]!=""))
@endif
@if(isset($permissions) && count($permissions)>0) @foreach ($permissions as $irow=> $rpermission) @endforeach @else @endif
# Permissions Action
{{ $irow+1 }} {{$rpermission->name}}
@can('VIEW PERMISSION') View  @endcan @can('EDIT PERMISSION') Edit  @endcan @can('DELETE PERMISSION')
{{csrf_field()}}
@endcan
No Record Found
@endsection