@extends('backend.layouts.master') @section('title','All Bookings') @section('main-content')
Bookings
@if(count($applicants)>0) @foreach($applicants as $applicant) @endforeach
ID Name Phone Date Time Action
{{$applicant->id}} {{$applicant->name}} {{$applicant->phone}} {{$applicant->date}} {{$applicant->time}}
@csrf @method('delete')
@else
No applicants found!!! Please add applicant
@endif
@endsection