@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ __('UNIFORMES VENDIDOS A PROFESORES') }}
@foreach ($data as $uniforme) @endforeach
No PROFESOR UNIFORME TALLA CANTIDAD PRECIO DE VENTA
{{ $uniforme->id }} {{ $uniforme->profe->nombre }} {{ $uniforme->uniforme->nombre }} {{ $uniforme->uniforme->talla }} {{ $uniforme->cantidad }} Q. {{ number_format($uniforme->total, 2) }} @can('admin')
@csrf @method('delete')
@endcan
@endsection @section('scripts') @endsection