@extends('layouts.print') @section('content')


{!! __('Date') !!} : {{ date("Y-m-d") }}

{{ __('Best seller') }} {!! __('During the month') !!} {!! Date('m-Y') !!}


@foreach ($products_week as $key => $product) @endforeach
{!! __('Item title') !!} {!! __('Current Balance') !!} {!! __('Quantity sold') !!}
{{ $loop->index + 1 }} {!! $product->title !!} {!! $product->balance !!} {!! $product->solds_count !!}

{!! __('Date') !!} : {{ date("Y-m-d") }}


@endsection @section('script') @endsection