@include('new_layouts.header') @include('construction_project.side-menu')
| {{__('Sno')}} | {{__('Date of Casting')}} | {{__('Element of Casting')}} | {{__('Grade of Concrete')}} | {{__('Theoretical')}} | {{__('Actual')}} | {{__('7 days Test Fall on')}} | {{__('28 days Test Fall on')}} | {{__('28 days Result')}} | {{__('Remarks')}} | {{__('Attachment')}} | @if(Gate::check('edit concrete') || Gate::check('delete concrete')){{__('Action')}} | @endif
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{ Utility::site_date_format($bulk_data->date_of_casting,\Auth::user()->id) }} | {{$bulk_data->element_of_casting}} | {{$bulk_data->grade_of_concrete}} | {{ Utility::site_date_format($bulk_data->theoretical,\Auth::user()->id)}} | {{ Utility::site_date_format($bulk_data->actual,\Auth::user()->id) }} | {{ Utility::site_date_format($bulk_data->testing_fall,\Auth::user()->id ?? '-')}} | {{ Utility::site_date_format($bulk_data->days_testing_falls,\Auth::user()->id ?? '-') }} | {{$bulk_data->days_testing_result ?? '-'}} | {{$bulk_data->remarks ?? '-'}} | {{$data->file_name ?? '-'}} | @if(Gate::check('edit concrete') || Gate::check('delete concrete'))
@can('edit concrete')
$projectid,"id"=>$data->id]) }}"
data-ajax-popup="true" data-size="xl" data-bs-toggle="tooltip" title="{{__('Edit')}}"
data-title="{{__('Create Concrete Pouring Record')}}">
@endcan
@can('delete concrete')
{!! Form::open(['method' => 'POST', 'route' => ['concrete.delete_concrete',
$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