@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 Committee @php foreach($allCommittee as $all){ @endphp {{ $all->comm_id."-".$all->comm_name }} @php } @endphp @error('txt_meeting_no') {{ $message }} @enderror Name @error('txt_meeting_name') {{ $message }} @enderror Description @error('txt_meeting_desc') {{ $message }} @enderror From Date @error('txt_from_date') {{ $message }} @enderror To Date @error('txt_to_date') {{ $message }} @enderror Is Active Yes No Committee Details S.No. Committee No. Committee Active From @php $sn = 1; foreach($allCommittee as $all){ @endphp {{ $sn }} {{ $all->comm_id }} {{ $all->comm_name }} {{ date("d-m-Y", strtotime($all->from_dt)) }} @php ++$sn; } @endphp @endsection @push('scripts') @endpush