PATH:
home
/
lab2454c
/
aficb.com
/
resources
/
views
/
admin
/
contacts
@extends('admin.layout.adminMasterLayout') @section('title', 'Request Demo 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">Request Demo List</h3> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Name</th> <th>Email</th> <th>Phone</th> <th>Company Name</th> <th>Industry</th> <th>Job</th> <th>Country</th> <th>City</th> <th>State</th> </tr> </thead> <tbody> @forelse($requestDemos as $requestDemo) <tr> <td> {{ $requestDemo->fullname }} </td> <td> {{ $requestDemo->email }} </td> <td> {{ $requestDemo->phone }} </td> <td> {{ $requestDemo->company_name }} </td> <td> {{ $requestDemo->industry }} </td> <td> {{ $requestDemo->job_title }} </td> <td> {{ isset($requestDemo->country) ? $requestDemo->country : '-' }} </td> <td> {{ isset($requestDemo->city) ? $requestDemo->city : '-' }} </td> <td> {{ isset($requestDemo->state) ? $requestDemo->state : '-' }} </td> </tr> @empty <td colspan="4">No Request Demo Found</td> @endforelse </tbody> </table> <div class="mt-5"> {{ $requestDemos->links('pagination::bootstrap-4') }} </div> </div> </div> </div> </div> </div> </div> @endsection
[+]
..
[-] contacts.blade.php
[edit]
[-] requestDemo.blade.php
[edit]
[-] subscriptions.blade.php
[edit]