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

Списък с обекти


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