@extends('layouts.adminapp') @section('title') {{ __('lng.ChilavListDetails') }} @endsection @section('open_settings', 'open') @section('active_settings', 'active') @section('active_chilav_list', 'active') @section('content')

{{ __('lng.ChilavListDetails') }}

{{ __('lng.ChilavListDetailTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($ChilavListDetails as $ChilavListDetail) @foreach ($ChilavListDetail->House->members as $Member) @if ($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY) @endif @endforeach @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Date') }} {{ __('lng.Session') }} {{ __('lng.House') }} {{ __('lng.Author') }}
{{ ++$si }} {{ $ChilavListDetail->date }} {{ $ChilavListDetail->session }} {{ $ChilavListDetail->House->name ?? '' }} {{ $Member->name }}

{{ __('lng.Showing') }} {{ $ChilavListDetails->count() }} {{ __('lng.Items') }}

@endif

{{ $lastRound }}

{{ __('lng.LatestRound') }}
{{ $lastRound }}
@if ($lastRound)
@csrf
@endif
{{ __('lng.TodayChilav') }} ({{date('d-m-Y',strtotime($today))}})
    @foreach ($TodayChilavs as $TodayChilav)
  • {{$TodayChilav->session}} {{$TodayChilav->House->name}} @foreach ($TodayChilav->House->members as $Member) @if ($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY) {{ $Member->name }} @endif @endforeach
  • @endforeach
@endsection