@extends('layouts.sidebar') @section('title', 'Nomadic-Schedule Location') @section('content')
@csrf






@if(!empty($local_studios) && $local_studios->count()) @foreach($local_studios as $dt) @endforeach @else @endif
{{$dt->name}}
No record found
{!! $local_studios->withQueryString()->links('vendor.pagination.bootstrap-5') !!}
 
@if(!empty($team) && $team->count()) @foreach($team as $dt) @endforeach @else @endif
Name Email Role Manager
{{$dt->fname}} {{$dt->lname}} {{$dt->email}} {{$dt->role_name}} {{$dt->manager_fname}} {{$dt->manager_lname}}  
No record found
{!! $team->withQueryString()->links('vendor.pagination.bootstrap-5') !!}
Points balance
Last month booking cost
{{$last_month_booking_cost}}pts
Current month booking cost
{{$current_month_booking_cost}}pts
Current balance
{{$current_balance}}pts
Transactions
@foreach($points as $point) @endforeach
Date Status Points
{{date('d M Y',strtotime($point->created_at))}} {{$points_action[$point->action]}} +{{$point->credit}}pts
@endsection @section('footer_scripts') @endsection