PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
base
/
resources
/
views
/
custom
/
productBannerContent
@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>Banner Title</th> <th>Banner Description</th> <th>Action</th> </tr> </thead> <tbody> @forelse($productBanners as $productBanner) <tr > <td> {{ $productBanner->banner_title }} </td> <td> {{ $productBanner->banner_desc }} </td> <td> <a href="{{ route('editProductBannerContent', $productBanner) }}" 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
[-] form.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]