@include('new_layouts.header') @include('construction_project.side-menu')
| {{__('Sno')}} | {{__('Description')}} | {{__('RAM Ref with No')}} | {{__('Location')}} | {{__('Name of Supplier')}} | {{__('Contact Person')}} | {{__('Mobile/HP')}} | {{__('Telephone')}} | {{__('Fax')}} | {{__('Email')}} | {{__('Lead Time')}} | {{__('Target Delivery Date')}} | {{__('Target Date of Approval')}} | {{__('Status')}} | @if(Gate::check('edit procurement material') || Gate::check('delete procurement material')){{__('Action')}} | @endif
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{$data->description}} | {{$data->ram_ref_no}} | {{$data->location}} | {{$data->supplier_name}} | {{$data->contact_person}} | {{$data->mobile_hp_no}} | {{$data->tel}} | {{$data->fax}} | {{$data->email}} | {{$data->lead_time}} | {{ Utility::site_date_format($data->target_delivery_date,\Auth::user()->id) }} | {{ Utility::site_date_format($data->target_approval_date,\Auth::user()->id) }} | {{$data->status}} | @if(Gate::check('edit procurement material') || Gate::check('delete procurement material'))
@can('edit procurement material')
$projectid,
"id"=>$data->id]) }}"
data-ajax-popup="true" data-size="xl" data-bs-toggle="tooltip"
title="{{__('Edit')}}"
data-title="{{__('Edit Procurement Material Supply Log')}}">
@endcan
@can('delete procurement material')
{!! Form::open(['method' => 'POST', 'route' => ['delete_procurement_material',
$data->id],'id'=>'delete-form-'.$data->id]) !!}
{{ Form::hidden('id',$data->id, ['class' => 'form-control']) }}
{{ Form::hidden('projectid',$projectid, ['class' => 'form-control']) }}
{!! Form::close() !!}
@endcan
|
@endif