PATH:
home
/
lab2454c
/
credityorkgroup.com
/
resources
/
views
/
admin
/
contacts
@extends('admin.layout.adminMasterLayout') @section('title', 'Subscription List') @section('content') <div class="content-wrapper"> <div class="row"> <div class="col-lg-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h3 class="card-title">Subscription List</h3> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Name</th> <th>Email</th> </tr> </thead> <tbody> @forelse($subscriptions as $subscription) <tr> <td> {{ $subscription->name }} </td> <td> {{ $subscription->email }} </td> </tr> @empty <td colspan="4">No Subscription Found</td> @endforelse </tbody> </table> <div class="mt-5"> {{ $subscriptions->links('pagination::bootstrap-4') }} </div> </div> </div> </div> </div> </div> </div> @endsection
[+]
..
[-] contacts.blade.php
[edit]
[-] requestDemo.blade.php
[edit]
[-] subscriptions.blade.php
[edit]