cotizaweb/resources/views/cotizaciones/rechazada.blade.php
jesusfb 161fcee049
Some checks are pending
Deploy to EC2 cotiza / deploy (push) Waiting to run
first commit
2026-04-24 12:53:27 -07:00

11 lines
320 B
PHP

@extends('layouts.app')
@section('content')
<div class="container">
<h2>Cotización Rechazada </h2>
<p>Has rechazado esta cotización.</p>
<p><strong>Cliente:</strong> {{ $cotizacion->cliente->nombre }}</p>
<p><strong>Total:</strong> ${{ number_format($cotizacion->total,2) }}</p>
</div>
@endsection