PATH:
home
/
lab2454c
/
westernclear.net
/
resources
/
views
/
admin
/
homepageManager
/
investmentSection
/
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">Investment Text</h4> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Title</th> <th>Description</th> <th>Action</th> </tr> </thead> <tbody> @isset($investmentText) <tr> <td> {{ $investmentText->title }} </td> <td> {!! Str::limit($investmentText->description, 100) !!} </td> <td> <a href="{{ route('investmentText.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]