@extends('backend.layout') @section('content')
{{ __('States') }}
@includeIf('backend.partials.languages')
{{ __('Add New') }}
@if (count($states) == 0)

{{ __('NO STATES FOUND') . '!' }}

@else
@if ($settings->event_country_status == 1) @endif @foreach ($states as $state) @if ($settings->event_country_status == 1) @endif @endforeach
{{ __('State') }}{{ __('Country') }}{{ __('Status') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ $state->name }} {{ @$state->country->name }} @if ($state->status == 1)

{{ __('Active') }}

@else

{{ __('Deactive') }}

@endif
{{ $state->serial_number }}
@csrf
@endif
{{-- create modal --}} @include('backend.event.specification.state.create') @endsection @section('script') @endsection