@extends('layouts.sidebar') @section('title', 'Nomadic-Studio') @section('content')
@csrf
Availablitiy & prices
Daily Availability Daily ({{session()->get('user_currency')}}) Hourly ({{session()->get('user_currency')}})
@if(!empty($studio_equipments) && $studio_equipments->count()) @foreach($studio_equipments as $dt) @endforeach @else @endif
Name Category Status Serial Number Price
{{$dt->name}} {{$dt->Category->cat_name}} @if($dt->status==0) Unavailable @else Available @endif {{$dt->serial_number}} {{convertCurrency($dt->price)}} ({{session()->get('user_currency')}})
No record found
{!! $studio_equipments->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') !!}
@endsection @section('footer_scripts') @endsection