@extends('layouts.app') @section('content') @if(!$constructionSites->isEmpty())

{{__("Construction sites")}}

@foreach($constructionSites as $site) @endforeach
{{__("Date")}} {{__("Column leader")}} {{__("Number of workers")}} {{__("Place")}} {{__("Street")}} {{__("Total")}}
{{date('d.m.Y.', strtotime($site->date))}} {{$site->name.' '.$site->surname}} {{$site->number_of_workers}} {{$site->place}} {{$site->street}} {{$deMod->totalForSite($site->id)}} @if($isSuperAdmin) @endif
@endif @endsection