@extends('layouts.layout') @section('title', 'Pre Allocation') @section('content')

Pre Allocation Class Student List

  Booked
  Cancelled
  No Action taken yet
  Renewals Not Booked
@foreach ($preAllocationData as $preAllocationItem) @endforeach
Order ID Customer Name Student Current Class New class
{{ $preAllocationItem['order']['order_number'] }} {{ $preAllocationItem['order']['user']['firstname'] .' '. $preAllocationItem['order']['user']['lastname'] }} {{ $preAllocationItem['booking']['student']['firstname'] .' '. $preAllocationItem['booking']['student']['lastname'] }} {{ ((!empty($preAllocationItem->old_classes->term->term_name)) ? $preAllocationItem->old_classes->term->term_name . ' | ' : '') . ((!empty($preAllocationItem->old_classes->franchise->name)) ? $preAllocationItem->old_classes->franchise->name : '') . ' | ' . ((!empty($preAllocationItem->old_classes->classage)) ? $preAllocationItem->old_classes->classage->class_age_from . '-' . $preAllocationItem->old_classes->classage->class_age_to : '') . ' | ' . $preAllocationItem->old_classes->venue->name . ' | ' . date('H:i', strtotime($preAllocationItem->old_classes->start_time)) . ' - ' . date('H:i', strtotime($preAllocationItem->old_classes->end_time)) }} {{ ((!empty($preAllocationItem->classes->term->term_name)) ? $preAllocationItem->classes->term->term_name . ' | ' : '') . ((!empty($preAllocationItem->classes->franchise->name)) ? $preAllocationItem->classes->franchise->name : '') . ' | ' . ((!empty($preAllocationItem->classes->classage)) ? $preAllocationItem->classes->classage->class_age_from . '-' . $preAllocationItem->classes->classage->class_age_to : '') . ' | ' . $preAllocationItem->classes->venue->name . ' | ' . date('H:i', strtotime($preAllocationItem->classes->start_time)) . ' - ' . date('H:i', strtotime($preAllocationItem->classes->end_time)) }}
@endsection