@extends('layouts.app', ['title' => 'Agendamento']) @section('css') @endsection @section('content')
Cliente: {{ $item->cliente->razao_social }}
CPF/CNPJ: {{ $item->cliente->cpf_cnpj }}
Telefone: {{ $item->cliente->telefone }}
Total de serviços: {{ sizeof($item->itens) }}
Desconto: {{ __moeda($item->desconto) }}
Atendente: {{ $item->funcionario ? $item->funcionario->nome : '' }}
| Serviço | Quantidade | Valor |
|---|---|---|
| {{ $i->servico->nome }} | {{ number_format($i->quantidade, 2) }} | {{ __moeda($i->valor) }} |
| Total | R$ {{ __moeda($item->total) }} |