{{ __('Agreement') }} {{ $agreement->agreement_number }}

← Back to Agreements
{{-- Header --}}

Internal Management System

SERVICE AGREEMENT

{{ $agreement->agreement_number }}

Date: {{ $agreement->created_at->format('M d, Y') }}

@php $statusColors = [ 'draft' => 'bg-gray-100 text-gray-800', 'sent' => 'bg-blue-100 text-blue-800', 'signed' => 'bg-green-100 text-green-800', 'cancelled' => 'bg-red-100 text-red-800', ]; @endphp {{ ucfirst($agreement->status) }}
{{-- Client Info --}}

Between

WebSparkIT

IT Solutions & Services

And

{{ $agreement->client_name }}

@if($agreement->company_name)

{{ $agreement->company_name }}

@endif @if($agreement->client)

{{ $agreement->client->email }}

@endif
@if($agreement->project)

Project

{{ $agreement->project->name }}

@endif {{-- Total Amount --}}

Agreement Value

Rs{{ number_format($agreement->total_amount, 2) }}

{{-- Scope of Work --}} @if($agreement->scope_of_work)

Scope of Work

{{ $agreement->scope_of_work }}
@endif {{-- Terms & Conditions --}} @if($agreement->terms_and_conditions)

Terms & Conditions

{{ $agreement->terms_and_conditions }}
@endif {{-- Payment Terms --}} @if($agreement->payment_terms)

Payment Terms

{{ $agreement->payment_terms }}
@endif {{-- Signature Area --}}

For

Authorized Signature

For {{ $agreement->client_name }}

Client Signature

@if($agreement->signed_at)

Signed on {{ $agreement->signed_at->format('M d, Y') }}

@endif
{{-- Actions --}} @if($agreement->status === 'draft')
@csrf
@endif