digital_purchase_history.blade.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. @extends('frontend.layouts.user_panel')
  2. @section('panel_content')
  3. <div class="card">
  4. <div class="card-header">
  5. <h5 class="mb-0 h6">{{ translate('Download Your Product') }}</h5>
  6. </div>
  7. <div class="card-body">
  8. <table class="table aiz-table mb-0">
  9. <thead>
  10. <tr>
  11. <th>{{ translate('Product')}}</th>
  12. <th width="20%">{{ translate('Option')}}</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. @foreach ($orders as $key => $order_id)
  17. @php
  18. $order = \App\Models\OrderDetail::find($order_id->id);
  19. @endphp
  20. <tr>
  21. <td><a href="{{ route('product', $order->product->slug) }}">{{ $order->product->getTranslation('name') }}</a></td>
  22. <td>
  23. <a class="btn btn-soft-info btn-icon btn-circle btn-sm" href="{{route('digital-products.download', encrypt($order->product->id))}}" title="{{ translate('Download') }}">
  24. <i class="las la-download"></i>
  25. </a>
  26. </td>
  27. </tr>
  28. @endforeach
  29. </tbody>
  30. </table>
  31. {{ $orders->links() }}
  32. </div>
  33. </div>
  34. @endsection