@extends('admin.layout.main')
@section('content')
@component('components.show-page-content')
@slot('heading')
Quotas
@endslot
@slot('modalId')
store-quota-modal
@endslot
@slot('modalButtonCaption')
Add Quota
@endslot
@slot('tableHeading')
Session |
District |
District %age |
Allocation of total seats/quota |
Last year remaining %age |
Current year seats |
Current year seats with %age |
Current year remaining %age |
Action |
@endslot
@slot('tableBody')
@foreach($quotas as $current)
| {{$current->session->session_name}} |
{{$current->district->district}} |
{{$current->district_quota_percentage}} |
{{$current->percentage_of_total_seats}} |
{{$current->last_year_remaining_fraction}} |
{{$current->current_year_allotted_seats}} |
{{$current->current_year_allotted_seats_fraction}} |
{{$current->current_year_remaining_fraction}} |
id") }}" class = "btn btn-xs btn-info" data-toggle = "tooltip"
data-placement = "top" title = "Edit this quota"> |
@endforeach
@endslot
@endcomponent
@component('components.modal')
@slot('id')
store-quota-modal
@endslot
@slot('size')
modal-lg
@endslot
@slot('method')
post
@endslot
@slot('url')
admin/quota/store
@endslot
@slot('title')
Add Quota
@endslot
@slot('formFields')
@include('admin.quota.quota-form')
@endslot
@endcomponent
@endsection
@section('script')
@endsection