@extends('layouts.admin') @section('title', 'Contract Management') @section('content')
Oversee all merchant contracts and agreements.
| Contract ID | Merchant | Type | Start Date | End Date | Status | Actions |
|---|---|---|---|---|---|---|
|
#{{ $contract->id }}
|
{{ $contract->merchant->name }}
|
{{ $contract->type }}
|
{{ $contract->start_date->format('M d, Y') }}
|
{{ $contract->end_date->format('M d, Y') }}
|
@if ($contract->status == 'active') Active @elseif ($contract->status == 'expired') Expired @else Pending @endif | View Edit |
| No contracts found. | ||||||