@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
Name Code Type Email Contact No. Contact Person Address Camp
Requested Confirmed Denied Cancelled Postponed Conducted
{{ $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() }}
No Record Found

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

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

@endsection