@extends ('layouts.in') @section ('body')
@foreach ($list as $row) @php ($link = route('state.update', $row->id)) @endforeach
{{ __('state-index.name') }} {{ __('state-index.alias') }} {{ __('state-index.country') }} {{ __('state-index.created_at') }} {{ __('state-index.updated_at') }}
{{ $row->name }} {{ implode(', ', $row->alias ?? []) }} {{ $row->country->name }} @dateLocal($row->created_at) @dateLocal($row->updated_at)
@stop