@include('new_layouts.header') @include('construction_project.side-menu')
| {{__('S.No')}} | {{__('Issued By')}} | {{__('Issued Date')}} | {{__('AD/ED Reference')}} | {{__('AD/ED Description')}} | {{__('Reference')}} | {{__('Initiator Reference')}} | {{__('Initiator Date')}} | @if(Gate::check('edit directions') || Gate::check('delete directions')){{__('Action')}} | @endif
|---|---|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{$data->issued_by}} | {{ Utility::site_date_format($data->issued_date,\Auth::user()->id) }} | {{$data->ad_ae_ref}} | {{$data->ad_ae_decs}} | {{$data->attach_file_name}} | {{$data->initiator_reference}} | {{ Utility::site_date_format($data->initiator_date,\Auth::user()->id) }} | @if(Gate::check('edit directions') || Gate::check('delete directions'))
@can('edit directions')
$projectid,
"id"=>$data->id]) }}"
data-ajax-popup="true" data-size="xl" data-bs-toggle="tooltip"
title="{{__('Edit')}}" data-title="{{__('Edit Consultants Directions Summary')}}">
@endcan
@can('delete directions')
{!! Form::open(['method' => 'POST', 'route' => ['delete_consultant_direction',
$data->id],'id'=>'delete-form-'.$data->id]) !!}
{{ Form::hidden('projectid',$projectid, ['class' => 'form-control']) }}
{!! Form::close() !!}
@endcan
|
@endif