@if(count($contracts) > 0)
@foreach($contracts as $contract)
{!! $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
@endif