@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'EReservation'])
@include('components.alert')
@csrf @method('PUT')
Reservation
Update
Cancel
Student ID
Select a Student
@foreach($students as $student)
cms_student_sid == $reservations->student_id) selected @endif> {{ $student->firstname }}
@endforeach
Book ID
Select a Book
@foreach($books as $book)
id == $reservations->book_id) selected @endif> {{ $book->title }}
@endforeach
Reservation Date
Status
status == 'pending') selected @endif>Pending
status == 'fulfilled') selected @endif>Fulfilled
status == 'cancelled') selected @endif>Cancelled
Due Date
Remarks
@include('layouts.footers.auth.footer')
@endsection @push('scripts') @endpush