@include('new_layouts.header') @include('construction_project.side-menu')

{{__('Concrete Pouring Record ')}}

@can('create concrete')
@endcan
@can('manage concrete')
@if(Gate::check('edit concrete') || Gate::check('delete concrete')) @endif @foreach ($dairydata as $key=>$data) @php $check=$data->diary_data; @endphp @if($check != null) @php $bulk_data = json_decode($check); @endphp @else @php $bulk_data = array(); @endphp @endif @if(Gate::check('edit concrete') || Gate::check('delete concrete')) @endif @endforeach
{{__('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')}}{{__('Action')}}
{{$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 ?? '-'}}
@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
@endcan
@include('new_layouts.footer')