@extends('dashboard.layout.master') @section('content')
@include('dashboard.layout.navbar') @php $current_user = Auth::user(); if ($current_user) { $allow_access = DB::table('users') ->join('roles', 'users.role', '=', 'roles.id') ->where('users.id', '=', $current_user->id) ->first(); } $form_management = json_decode($allow_access->form_management); array_unshift($form_management, 0); @endphp @php $lots = lots(); @endphp
Rejected Survey Form List
{{-- @include('dashboard.survey.filter', ['route' => 'survey.rejected.form']) --}} @foreach($survey_data as $item) @php $beneficairy_details=json_decode($item->beneficiary_details); @endphp @endforeach
Ref No Beneficiary Name CNIC Father Name Form Name Person Name Person Role Form Status Comment Id Actions
{{$beneficairy_details->b_reference_number}} {{$beneficairy_details->beneficiary_name}} {{$beneficairy_details->cnic}} {{$beneficairy_details->father_name}} {{$item->form_name}} {{$item->validator_name}} {{$item->role_name}} {{$item->form_status=='R' ? 'Rejected' : ''}} {{$item->generated_id}} View Form
@if(session('error')) @endif @if(session('success')) @endif @endsection