@extends('layouts.main') @section('title', 'Booking | Select studio') @section('content')
@if($studios->count() > 0)

Select type of studio

@foreach($studios as $studio)
has('temp-booking-studio-selection') && session()->get('temp-booking-studio-selection')==$studio->id)checked @endif @if(!$studio->available) disabled @endif>

{{$studio->name}}

@if(!$studio->available)

studio is booked at this time please select different time. check availability

@endif

{{$studio->studio_points}}pts

@endforeach
{!! $studios->withQueryString()->links('vendor.pagination.bootstrap-5') !!}
@else

Studios are not available this time.

@endif
@include('frontend.booking.booking-form')
@endsection @section('footer_scripts') @endsection