@extends('layout') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
{{ Form::open(['url' => url('/organization-list'), 'method' => 'GET', 'id' => 'orgListForm', 'class' => 'search-form']) }}
Reset
{{ Form::close() }}
@if (count($data['OrganizationList']) > 0) @foreach ($data['OrganizationList'] as $key => $value) @endforeach @else @endif
Action Name Code Type Email Contact No. Contact Person Address Camp Status
Requested Confirmed Denied Cancelled Postponed Conducted Request for Cancellation Request for Rescheduling
{{ $value->org_name }} {{ $value->org_code }} {{ config('constants.ORG_TYPE')[$value->org_type] ?? '' }} {{ $value->org_email }} {{ $value->org_contract_no }} {{ $value->contract_person }} {{ $value->org_address }}, {{ $value->org_address_pin }} {{ $value->requestedcamplist->count() }} {{ $value->confirmedcamplist->count() }} {{ $value->deniedcamplist->count() }} {{ $value->cancelledcamplist->count() }} {{ $value->postponedcamplist->count() }} {{ $value->conductedcamplist->count() }} {{ $value->cancelrequestcamplist->count() }} {{ $value->postpondcamplist->count() }} @if ($value->status_id == 1)
Active
@else
In-Active
@endif
No Record Found

{{ $data['OrganizationList']->appends(Request::except('page'))->links() }}

{{ $data['OrganizationList']->firstItem() }} to {{ $data['OrganizationList']->lastItem() }} Out of {{ $data['OrganizationList']->total() }}

@endsection