@extends('app-new') @push('content-header')
@endpush @section('content')| Name | Country | Status | Actions |
|---|---|---|---|
| {{ $state->name }} | {{ $state->country->name ?? '-' }} | @if($state->trashed()) Archived @else {{ ucfirst($state->status) }} @endif | @if(!$state->trashed()) Edit @else @endif |
| No states found. | |||