@extends('staff.layout') @section('content')
Create Proposal Update Lead Status View FollowUp History Chat
@if(session('success')) @endif @if(session('error')) @endif
@csrf

PROJECT PROPOSALS

@foreach ($proposals as $proposal)
@csrf
@csrf
#{{ $proposal->proposal_id }}

Date: {{ \Carbon\Carbon::parse($proposal->date)->format('d-m-Y') }}

Open Till: {{ \Carbon\Carbon::parse($proposal->open_till)->format('d-m-Y') }}


View Details
@csrf

Draft Actions:

@if(is_null($proposal->scope_of_work) && !empty($proposal->attachment))
@csrf
⬇️ @else 📄 View Draft
@csrf
@csrf
@endif
@endforeach
@endsection