@extends('admin.layouts.adminpanel') @section('page_header') @php $page_title = empty($quote->id) ? __('Create new Quote') : __('Edit Quote'); @endphp @include('admin.partials.page_header') @endsection @section('content')
(*) Datos obligatorios.
id) || $quote->currency == 'Pesos') disabled @endif>
@can('consultar cotizaciones')
@can('crear cotizaciones') {{ __('New Item') }} @endcan
@if ($quote->items->isNotEmpty()) @foreach ($quote->items as $item) @endforeach @endif
{{ __('Image') }} {{ __('Quantity') }} {{ __('Description') }} {{ __('Unit') }} {{ __('Selling Price') }} {{ __('Total') }} {{ __('Actions') }}
@if ($item->image) Service Image @endif {{ $item->quantity }} {!! urldecode($item->description) !!} {{ $item->unit }} ${{ number_format($item->price, 2) }} ${{ number_format($item->amount, 2) }} @can('editar cotizaciones') @endcan @can('borrar cotizaciones') @endcan
{{ __('No items added') }}
@endcan
{{-- Right panel --}}
{{-- controls --}}
id) && $quote->advance_pct > 0 ? 'checked' : '' }}>
id) && $quote->discount_pct > 0 ? 'checked' : '' }}>
id) && $quote->iva_pct > 0 ? 'checked' : '' }}>



{{-- buttons --}} @can('editar cotizaciones')
@endcan
@endsection