Project Details

Contact Person: {{ $company->contact_person }}
Phone: {{ $company->phone }}
Email: {{ $company->email }}
Business Type: {{ $company->business_type ?? '-' }}
Status: {{ $company->status }}
Created: {{ $company->created_at->format('M d, Y') }}
@if($company->notes)
Notes:

{{ $company->notes }}

@endif
@if($company->campaigns->count() > 0)
@foreach($company->campaigns as $campaign) @endforeach
Name Platform Objective Budget Status Actions
{{ $campaign->name }} {{ $campaign->platform }} {{ $campaign->objective }} ₹{{ number_format($campaign->total_budget, 2) }} {{ $campaign->status }} View
@else

No campaigns found.

@endif