@extends('procurement::layouts.master') @section('title',$project->name) @section('content')

{{ $project->name }} {{ ucfirst(str_replace('_',' ',$project->status)) }}

Edit ← Back
Code
{{ $project->code ?? '—' }}
Launch
{{ $project->target_launch_date?->format('M j, Y') ?? '—' }}
Description
{{ $project->description ?? '—' }}
Notes
{{ $project->notes ?? '—' }}
Production Runs
+ New Run
@forelse($project->runs as $run) @empty @endforelse
RunTarget QtyStatusTarget COGSSell Price
{{ $run->run_number }} {{ $run->target_qty }} {{ ucfirst(str_replace('_',' ',$run->status)) }} ${{ number_format($run->target_cogs,2) }} ${{ number_format($run->sell_price,2) }}
No runs yet
@endsection