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

Towns

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