@extends('layouts.app') @section('title', 'States') @section('content')

States

New State
@foreach($states as $state) @endforeach
# Name Country Actions
{{ $state->id }} {{ $state->name }} {{ optional($state->country)->name }} View Edit
@csrf @method('DELETE')
{{ $states->links() }}
@endsection