@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
@foreach ($purchaseServiceLists as $index => $item) @endforeach
S.N Service Party Purchased Date Contract Name Contract Validity Status Action
{{ $index + 1 }} {{ $item->name }} {{ $item->party }} {{ $item->purchased_date }} {{ $item->contract_name }} {{ $item->contract_validity }} @if ($item->contract_validity >= now()) (Valid) @else (Expired) @endif {{ $item->status }}
@endsection