PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
base
/
resources
/
views
/
custom
@extends('core/base::layouts.master') @section('content') <div class="row"> <div class="col-lg-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> {{-- <h3 class="card-title">FAQ List</h3> <hr> --}} <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Title 1</th> <th>Title 2</th> <th>Title 3</th> <th>Title 4</th> <th>Title 5</th> <th>Title 6</th> <th>Action</th> </tr> </thead> <tbody> @forelse($titles as $title) <tr > <td> {{ $title->title1 }} </td> <td> {{ $title->title2 }} </td> <td> {{ $title->title3 }} </td> <td> {{ $title->title4 }} </td> <td> {{ $title->title5 }} </td> <td> {{ $title->title6 }} </td> <td> <a href="{{ route('editHomeTitle', $title) }}" class="btn btn-primary btn-sm"> <i class="icon-open"></i> Edit </a> </td> </tr> @empty <td colspan="4">No Title(s) Listed Yet</td> @endforelse </tbody> </table> </div> </div> </div> </div> </div> @include('common.messageContainer') @endsection
[+]
..
[-] enquiryList.blade.php
[edit]
[-] homeTitle.blade.php
[edit]
[+]
productBannerContent
[-] list.blade.php
[edit]