@extends('layouts.instructor') @push('title', get_phrase('Purchase History')) @section('content')

{{ get_phrase('Purchase History') }}

@if (count($purchases) > 0)

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

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

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

{{ $purchases->links() }}
@endif
@endsection