@extends('layouts.app') @section('form-title') {{ __('Projects - Report check') }} @endsection @section('form-sub-title') {{ __('Click a project to view more information') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ __('Projects - Report check') }}
@forelse ($projects as $project) @empty {{-- --}} @endforelse
{{ __('Project') }} {{ __('Deadline') }} {{ __('Driver') }} {{ __('Subtotal (€)') }} {{ __('Material (€)') }} {{ __('Total exc. VAT (€)') }} {{ __('Status') }}
{{ $project->title }} {{ $project->deadline }} @if(!empty($project->projectDriver)) {{ $project->projectDriver->name }} @endif @if(!empty($project->complaint)) {{ $project->complaint->subtotal }} @endif @if(!empty($project->complaint)) {{ $project->complaint->price_material }} @endif @if(!empty($project->complaint)) {{ $project->complaint->total }} @endif {{ $project->projectStatus->translated_title }}
{{ __('No result found') }}
{{ $projects->links() }}
@endsection