@extends('layouts.report')
@section('style')
@endsection
@section('header')
@include('layouts.includes.report_header',[
'title' => trans('reports.product_in_out'),
'start_date' => $start_date,
'end_date' => $end_date
])
@endsection
@section('table')
@if(isset($histories) && count($histories) > 0 )
@include('reports.inc.table_products')
@endif
@endsection