@extends('layouts.app') @section('link') @endsection @section('content') @include('shared.messages')

Списък с градове


@foreach($cities as $city) @endforeach
ID Име Активен @if(auth()->user()->role_id==1 || auth()->user()->role_id==4) Добави град @else Действия @endif
{{$city->name}} {{$city->name}} {{$city->active==1 ? 'Да' : 'Не' }} @if(auth()->user()->role_id==1 || auth()->user()->role_id==4) @endif
@endsection