@extends('layouts.app') @push('css_lib') @endpush @section('content')

{{trans('Pedidos')}} |{{trans('Servicios Solicitados')}}

  • {{__('lang.booking_status')}} @if($pedido->cancel) {{__('lang.booking_cancel')}} @endif
  • @foreach($pedidoStatuses as $pedidoStatus)
    {{$pedidoStatus->order}} {{$pedidoStatus->status}}
    @if (!$loop->last)
    @endif @endforeach
  • {{__('lang.booking_id')}} #{{$pedido->id}}
  • {{__('Pago Ofrecido')}} ={{$pedido->costo}}
  • {!! getMediaColumn($pedido->e_service,'image','rounded shadow-sm border') !!}
    {{__('lang.booking_e_service')}} {{$pedido->e_service->name}}
    @if($pedido->e_service->price_unit == 'fixed' && !empty($pedido->e_service->quantity_unit)) {{__('lang.e_service_quantity')}} {{ $pedido->quantity }} {{ $pedido->e_service->quantity_unit }} @endif
  • {{__('lang.option_plural')}}
  • @foreach($pedido->options as $option)
  • {!! getMediaColumn($option,'image','rounded shadow-sm border') !!} {{$option->name}} {{getStripedHtmlColumn($option,'description')}}
    {!! getPriceColumn($option) !!}
  • @endforeach
{{__('lang.booking_user_id')}}
  • {!! getMediaColumn($pedido->user,'avatar','img-circle shadow-sm border') !!}
    {{$pedido->user->name}} {{$pedido->user->email}} {{$pedido->user->phone_number}}
    {{__('lang.user_profile')}}
{{__('lang.booking_time')}}
  • {{__('lang.booking_booking_at')}} {{$pedido->booking_at}}
{{__('lang.booking_address')}}
@endsection @push('scripts_lib') {{-- --}} @endpush