@extends('layouts.app')
@section('title')
All Cities
@endsection
@section('description')
All cities is here.
@endsection
@section('breadcrumb')
All Cities
@endsection
@section('content')
# |
Name |
@forelse ($cities as $index => $city)
{{ $index+1 }} |
{{ $city->name }} |
@empty
No data. |
@endforelse
@endsection