@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}}
Committee Name*
@error('screening_committee_name')
{{ $message }}
@enderror
Active From*
@error('active_from')
{{ $message }}
@enderror
Active To
@error('active_to')
{{ $message }}
@enderror
@if($sc_masters)
Screening Committee Names - Report
@php $sno = 1; @endphp @foreach($sc_masters as $sc_masters) @endforeach
#
Screening Committee Name
From Date
To Date
{{$sno++}}
{{$sc_masters->committee_name}}
{{date('d-m-Y', strtotime($sc_masters->from_date))}}
{{$sc_masters->to_date == null ? '' : date('d-m-Y', strtotime($sc_masters->to_date))}}
Edit
Delete
@endif
@endsection @push('scripts') @endpush