芝麻web文件管理V1.00
编辑当前文件:/home/lekhnath/silverray.com.au/oldsite/resources/views/admin/city.blade.php
@extends('admin.master_layout') @section('title')
{{ __('admin.City List') }}
@endsection @section('admin-content')
{{ __('admin.City List') }}
{{ __('admin.Add New') }}
{{ __('admin.Import City') }}
{{ __('admin.SN') }}
{{ __('admin.City') }}
{{ __('admin.Translations') }}
{{ __('admin.Status') }}
{{ __('admin.Action') }}
@foreach ($cities as $index => $city)
{{ ++$index }}
{{ $city->name }}
@forelse($languages as $key => $language)
{{ strtoupper($language->code) }}
@if (!$loop->last) || @endif @empty
{{ strtoupper(config('app.locale')) }}
@endforelse
@if ($city->status == 1)
@else
@endif
@endforeach
{{ __('admin.You can not delete this city. Because there are one or more users and seller has been created in this city.') }}
@endsection