@extends('frontend.layouts.app')
@section('title', app_name() . ' | ' . __('navs.general.home'))
@section('content')
@foreach($project->boxes as $box)
@if (Auth::user())
@if (Auth::user()->hasRole('administrator'))
{{$box->label}}
@else
{{$box->label}}
@endif
@endif
@foreach($box->files as $file)
@if($file->visible)
@php
$comments = $file->comments
@endphp
@if (count($comments) > 0)
@endif
@if ($file->type == 'photo' || $file->type == 'render')
{{$file->description}}
@elseif ($file->type == 'glb')
{{$file->description}}
@endif
@endif
@endforeach
@endforeach
@if (Auth::user() && Auth::user()->hasRole('administrator'))
@endif
@endsection
@section('page-style-files')
@stop
@section('page-js-files')
@stop
@section('page-js-script')
@stop