PATH:
home
/
lab2454c
/
omvstudio.com
/
resources
/
views
/
admin
/
user
@extends('admin.layouts.adminMasterLayout') @section('title', 'Subscription History') @section('user_select','active') @section('content') <div class="container-fluid"> <div class="dashboard__main mb-4"> <h2>Subscription History</h2> </div> <div class="card shadow mb-4"> <div class="card-body"> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th scope="col">Invoice Number</th> <th scope="col">Transaction Amount</th> <th scope="col">Transaction Date</th> <th scope="col">Action</th> </tr> </thead> @if ($invoices->count()) @foreach ($invoices as $invoice) <tr> <td>{{ $invoice->number }}</td> <td>{{ $invoice->total() }}</td> <td>{{ $invoice->date()->toFormattedDateString() }}</td> {{-- <td><a href="{{ $invoice->invoice_pdf }}" download="">Download</a></td> --}} <td><a href="{{ $invoice->hosted_invoice_url }}" target="_blank" download="">Download</a></td> </tr> @endforeach @else <td colspan="4">No data Found!!</td> @endif </table> </div> </div> </div> </div> @endsection
[-] show-invoice.blade.php
[edit]
[-] form.blade.php
[edit]
[+]
..
[-] edit-user-details.blade.php
[edit]
[-] referral-commission-details.blade.php
[edit]
[-] user-details.blade.php
[edit]
[-] user-list.blade.php
[edit]