@extends('layouts.user.dashb4') @section('content')
@if(count($contracts) > 0) @foreach($contracts as $contract)

{{ $contract['title'] }}

{!! $contract['body'] !!}
{!! Form::open(['action' => 'Contracts\SupplyChainController@deleteSupplyChainContract', 'method' => 'POST']) !!} {{ Form::hidden('contractId', $contract['contract_id']) }} {{ Form::submit('Delete', ['class' => 'btn btn-danger']) }} {!! Form::close() !!}
@endforeach @else

User currently has no supply chain contracts open.

@endif
@endsection