@extends('layouts.b4') @section('content')

Contract Dashboard


Create New Contract

@if(count($contracts)) @foreach($contracts as $contract)
{{ $contract['title'] }}
Type: {{ $contract['type'] }}
End Date: {{ $contract['end_date'] }}
{!! $contract['body'] !!}

@endforeach @else
No Contracts Issued
@endif @endsection