@extends('layouts.user.dashb4') @section('content')
| Supply Chain Contract Id | Title | End Date | Delivery Date | Description |
|---|---|---|---|---|
| {{ $contract['contract_id'] }} | {{ $contract['title'] }} | {{ $contract['end_date'] }} | {{ $contract['delivery_by'] }} | {{ $contract['body'] }} |
| Bid Amount | Entity | Notes | Accept? | {!! Form::open(['action' => 'Contracts\SupplyChainController@storeEndSupplyChainContract']) !!} {{ Form::hidden('contract_id', $contract['contract_id']) }} @foreach($bids as $bid)
|---|---|---|---|
| {{ $bid['amount'] }} | {{ $bid['name'] }} | {{ $bid['notes'] }} |
{{ Form::radio('accept', $bid['id'], false, ['class' => 'form-control']) }} |