@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')

{{ __('Ticket Statuses') }}

@include('common.demo') @include('common.errors')
@if($show_add_button) {{__('Add')}} @endif
@if (!count($statuses))

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

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

{{ __('Create new One') }}
@else @if($show_edit_button || $show_delete_button) @endif @foreach($statuses as $status) @if($show_edit_button || $show_delete_button) @endif @endforeach
{{ __('Status Title') }} @if($sort_order =='asc') @else @endif {{ __('Status Colour') }} @if($sort_order =='asc') @else @endif {{ __('Text Colour') }} @if($sort_order =='asc') @else @endif
{{ __($status->title) }} {{ Str::upper($status->color) }} {{ Str::upper($status->text_color) }} @if($show_edit_button) @endif @if ($status->id > 6)
@method('DELETE') @csrf @if($show_delete_button) @endif
@endif
@endif
@endsection