@extends('admin.layouts.adminapp') @section('content')
@if(permission('Chairman','create'))
+ अध्यक्ष सूची
@if(isset($edt)) @method('PUT') @endif @csrf @if (Session::has('success'))
{{Session::get('success')}}
@endif @if (Session::has('fail'))
{{Session::get('fail')}}
@endif
@error('name_of_chairman') {{$message}} @enderror
@error('father_husband') {{$message}} @enderror
@error('mobile_no') {{$message}} @enderror
@error('to') {{$message}} @enderror
@error('for') {{$message}} @enderror
@error('other_details') {{$message}} @enderror
@endif @if(permission('Chairman','show'))
अध्यक्ष सूची
@foreach($chairmans as $key=>$chairmandata) @endforeach
क्रं.सं. Status Action अध्यक्ष का नाम पिता/पति का नाम मो. नं. कब से कब तक अन्य विवरण
{{ $key + 1}}
{{ $chairmandata->name_of_chairman }} {{ $chairmandata->father_husband }} {{ $chairmandata->mobile_no }} {{ $chairmandata->to }} {{ $chairmandata->for }} {{ $chairmandata->other_details }}
@endif
@endsection @section('script') @endsection