@extends('inventory.layout')
@section('title', 'City')
@section('content')
@push('head')
@endpush
{{ __('Name')}} |
{{ __('Action')}} |
@foreach($cities as $city)
{{ isset($city->name) ? $city->name :'' }} |
{{-- --}}
{{----}}
|
@endforeach
@push('script')
@endpush
@endsection