@extends('layouts.instructor') @push('title', get_phrase('Sales report')) @push('meta')@endpush @push('css')@endpush @section('content')

{{ get_phrase('Sales report') }}

@if (count($sales_report) > 0)

{{ get_phrase('Showing') . ' ' . count($sales_report) . ' ' . get_phrase('of') . ' ' . $sales_report->total() . ' ' . get_phrase('data') }}

@foreach ($sales_report as $key => $report) @endforeach
@else @include('instructor.no_data') @endif @if (count($sales_report) > 0)

{{ get_phrase('Showing') . ' ' . count($sales_report) . ' ' . get_phrase('of') . ' ' . $sales_report->total() . ' ' . get_phrase('data') }}

{{ $sales_report->links() }}
@endif
@endsection @push('js') @endpush