@extends ('../welcome') @section('content')
| ID | Name | Building Type | Number of Floors | Roof Space | Roof Meter Percentage % | Created At | @if(auth()->user()->type == 'admin')Active | @endifAction |
|---|---|---|---|---|---|---|---|---|
| {{ $building->id }} | {{ $building->name }} | {{ $building->type }} | {{ $building->number_of_floors }} | {{ $building->roof_space ? $building->roof_space : 'There is no roof available for this building' }} | {{ $building->roof_percentage ? $building->roof_percentage . '%' : '--' }} | {{ $building->created_at }} | @if(auth()->user()->isAbleTo('buildings-update')) @endif @if(auth()->user()->isAbleTo('buildings-delete')) @endif |