@extends('layouts.default', ['appTopMenu' => true]) @section('title', 'Committee') @push('scripts') @endpush @push('head') @endpush @section('content') @php $id = 0; @endphp

Committee

@if($id == 0)
@else @endif @csrf
@error('txt_meeting_no') {{ $message }} @enderror
@error('txt_meeting_name') {{ $message }} @enderror
@error('txt_meeting_desc') {{ $message }} @enderror
@error('txt_from_date') {{ $message }} @enderror
@error('txt_to_date') {{ $message }} @enderror

Committee Details

@php $sn = 1; foreach($allCommittee as $all){ @endphp @php ++$sn; } @endphp
S.No. Committee No. Committee Active From
{{ $sn }} {{ $all->comm_id }} {{ $all->comm_name }} {{ date("d-m-Y", strtotime($all->from_dt)) }}
@endsection @push('scripts') @endpush