@extends('layout.app') @section('title') {{ __('Engineering Drawings') }} - {{ $project->subject }} @endsection @section('content')

{{ __('Project Drawings & Units') }}

@foreach($project->drawings as $drawing)
{{ $drawing->type }}
{{ $drawing->title }}

{{ basename($drawing->file_path) }}

@if($drawing->units->count() > 0)
{{ $drawing->units->count() }} Linked Units
@endif
@endforeach
@endsection