@extends('layouts.admin') @section('title','Reporte por rango de fecha') @section('styles') @endsection @section('options') @endsection @section('preference') @endsection @section('content')
{{--

Reporte por rango de fecha

--}} {{-- --}} {{-- --}}
{!! Form::open(['route'=>'report.results', 'method'=>'POST']) !!}
Fecha inicial
Fecha final
Total de ingresos:
s/ {{$total}}
{!! Form::close() !!}
@foreach ($sales as $sale) @endforeach
Id Fecha Total Estado Acciones
{{$sale->id}} {{\Carbon\Carbon::parse($sale->sale_date)->format('d M y h:i a')}} {{$sale->total}} {{$sale->status}}
{{-- --}}
@endsection @section('scripts') {!! Html::script('melody/js/data-table.js') !!} @endsection