@extends('panel::layouts.app') @section('body-class', '') @section('title', __('panel/menu.states')) @push('header') @endpush @section('content')
@if ($states)
@foreach($states as $item) @endforeach
{{ __('panel/common.id') }} {{ __('panel/state.name') }} {{ __('panel/state.code') }} {{ __('panel/state.country_code') }} {{ __('panel/state.position') }} {{ __('panel/state.active') }} {{ __('panel/common.actions') }}
{{ $item['id'] }} {{ $item['name'] }} {{ $item['code'] }} {{ $item['country_code'] }} {{ $item['position'] }} @include('panel::shared.list_switch', ['value' => $item->active, 'url' => panel_route('states.active', $item->id)])
{{ __('panel/common.edit')}}
@csrf @method('DELETE') {{ __('panel/common.delete')}}
{{ $states->withQueryString()->links('panel::vendor/pagination/bootstrap-4') }} @else @endif
@endsection @push('footer') @endpush