@extends('layouts.app')
@section('title', 'States')
@section('content')
| # |
Name |
Country |
Actions |
@foreach($states as $state)
| {{ $state->id }} |
{{ $state->name }} |
{{ optional($state->country)->name }} |
View
Edit
|
@endforeach
{{ $states->links() }}
@endsection