PATH:
home
/
lab2454c
/
westernclear.net
/
resources
/
views
/
admin
/
homepageManager
/
unmatchSection
/
text
<div class="row mb-5"> <div class="col-lg-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title">Unmatched Text</h4> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Title</th> <th>Link Text</th> <th>Action</th> </tr> </thead> <tbody> @isset($unmatchText) <tr> <td> {{ $unmatchText->title }} </td> <td> {{ $unmatchText->link_text }} </td> <td> <a href="{{ route('unmatchText.edit') }}" class="btn btn-primary btn-sm ml-3"> <i class="icon-open"></i> Edit </a> </td> </tr> @endisset </tbody> </table> </div> </div> </div> </div> </div>
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]