@extends('layouts.app') @section('title', 'Cotizaciones') @section('page-title', 'Cotizaciones — Logística') @section('breadcrumb') @endsection @section('content')

Cotizaciones

@hasanyrole('super-admin|jefe-logistica') Nueva Cotización @endhasanyrole
@forelse($cotizaciones as $cot) @php $badge = match($cot->estado) { 'aceptada' => 'success', 'rechazada' => 'danger', default => 'warning', }; @endphp @empty @endforelse
N° Cot. Fecha Proveedor Requerimiento Total (S/.) Validez Estado Acciones
{{ $cot->numero }} {{ \Carbon\Carbon::parse($cot->fecha)->format('d/m/Y') }} {{ Str::limit($cot->proveedor->razon_social, 30) }} @if($cot->requerimiento) {{ $cot->requerimiento->numero }} @else Libre @endif S/ {{ number_format($cot->total, 2) }} {{ $cot->validez_dias }} días {{ ucfirst($cot->estado) }}
No hay cotizaciones registradas.
{{ $cotizaciones->links() }}
@endsection