@extends('layouts.master') @section('title', 'Operaciones') @section('content')

Bot Operaciones

Operaciones

@if(count($operaciones)) @foreach ($operaciones as $key => $operacion) @endforeach
Fecha Nombre Monto Compra Venta
{{ date('d/m/Y',strtotime($operacion->created_at)) }} {{ $operacion->nombre }} U$D {{ $operacion->monto }} U$D {{ $operacion->compra }} U$D {{ $operacion->venta }}
@else

No Existen Registros


@endif
@endsection @section('javascript') @endsection