@extends('layouts.default') @section('title', $module_title) @push('head') @endpush @section('content')
@if(Session::has('failed'))
{{Session::get('error')}}
@endif
@csrf

{{$module_title.' - '.$module_sub_title}}

@error('screening_committee_name') {{ $message }} @enderror
@error('advocate_name') {{ $message }} @enderror
@error('active_from') {{ $message }} @enderror
@error('active_to') {{ $message }} @enderror
@if($sc_members)

Screening Committee Members - Report

@php $sno = 1; @endphp @foreach($sc_members as $sc_members) @endforeach
# Screening Committee Advocate Name From Date To Date
{{$sno++}} {{$sc_members->committee_name}} {{$sc_members->title.' '.$sc_members->user_name}} {{date('d-m-Y', strtotime($sc_members->from_date))}} {{$sc_members->to_date == null ? '' : date('d-m-Y', strtotime($sc_members->to_date))}} Edit Delete
@endif
@endsection @push('scripts') @endpush