@extends('layout') @section('content')
{{ 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 }} {{ $value->org_type == 1 ? 'Club' : ($value->org_type == 2 ? 'Society' : '') }} {{ $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