@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Roles') }}

@include('common.demo') @include('common.errors')
@if (!count($roles))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

{{ __('Create new One') }}
@else @foreach($roles as $role) @if (($role->status) == true) @else @endif @endforeach
{{ __(' Name') }} @if($sort_order =='asc') @else @endif {{ __('Description') }} @if($sort_order =='asc') @else @endif {{ __('Status') }} @if($sort_order =='asc') @else @endif
{{$role->name}} {{$role->description}} {{ __('Active') }}{{ __('Inactive') }}
@method('DELETE') @csrf

@endif
@endsection