@extends('admin.layout.layout') @section('title', 'GAS LMS | Material Requests') {{-- Breadcrumb section --}} @section('breadcrumb') @endsection @section('content') @include('components._error') {{-- Filter --}}
Reset
{{-- Requests table --}}

Requests List

@if (request()->status == 'unposted' || request()->course || !request()->status) @foreach ($material_requests as $key => $material) @endforeach @foreach ($hyper_material_requests as $key => $material) @endforeach @elseif (request()->status == 'posted') @foreach ($material_requests_post as $key => $material) @endforeach @foreach ($hyper_material_requests_post as $key => $material) @endforeach @endif
id Type Course Teacher Group Title amount Actions
{{ ++$key }}
{{ $material->acyname . '_' . $material->cname . ' (' . $material->lshort_name . ')' }} {{ $material->has_label ? '(' . $material->label . ')' : '' }} {{ $material->first_name . ' ' . $material->middle_name . ' ' . $material->last_name }} {{ $material->gname }} {{ $material->name }} - Actions
{{ ++$key }}
{{ $material->acyname . '_' . $material->cname . ' (' . $material->lshort_name . ')' }} {{ $material->has_label ? '(' . $material->label . ')' : '' }} {{ $material->first_name . ' ' . $material->middle_name . ' ' . $material->last_name }} {{ $material->gname }} {{ $material->name }} - Actions
{{ ++$key }}
{{ $material->acyname . '_' . $material->cname . ' (' . $material->lshort_name . ')' }} {{ $material->has_label ? '(' . $material->label . ')' : '' }} {{ $material->first_name . ' ' . $material->middle_name . ' ' . $material->last_name }} {{ $material->gname }} {{ $material->name }} {{$material->amount_due}} Approved
{{ ++$key }}
{{ $material->acyname . '_' . $material->cname . ' (' . $material->lshort_name . ')' }} {{ $material->has_label ? '(' . $material->label . ')' : '' }} {{ $material->first_name . ' ' . $material->middle_name . ' ' . $material->last_name }} {{ $material->gname }} {{ $material->name }} {{$material->amount_due}} Approved
@csrf
@csrf
@endsection @section('js') {{-- drawer --}} {{-- hyper drawer --}} {{-- calculate sum of all inputs --}} {{-- calculate sum of all hyper inputs --}} @endsection