@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("reports")}}

{{__("production_report")}}

@endsection @section("content")

{{__('production_report')}}

@csrf
@if ($errors->has('startDate') || $errors->has('endDate') || $errors->has('date_selection') || $errors->has('print') || $errors->has('order_id') || $errors->has('all_fields'))
    @if ($errors->has('startDate'))
  • {{ $errors->first('startDate') }}
  • @endif @if ($errors->has('endDate'))
  • {{ $errors->first('endDate') }}
  • @endif @if ($errors->has('date_selection'))
  • {{ $errors->first('date_selection') }}
  • @endif @if ($errors->has('print'))
  • {{ $errors->first('print') }}
  • @endif @if ($errors->has('order_id'))
  • {{ $errors->first('order_id') }}
  • @endif @if ($errors->has('all_fields'))
  • {{ $errors->first('all_fields') }}
  • @endif
@endif
@endsection @section("scripts") @endsection