PATH:
home
/
lab2454c
/
westernclear.net
/
resources
/
views
/
admin
/
homepageManager
/
goldstarSection
@extends('admin.layout.adminMasterLayout') @section('title', 'WesternClear Section') @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"> <h4 class="card-title">WesternClear Section</h4> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Image</th> <th>Description</th> <th>Action</th> </tr> </thead> <tbody> @if(isset($goldstarSection)) <tr> <td class="py-1"> <img src="{{ isset($goldstarSection->left_image) ? config("app.url").Storage::url($goldstarSection->left_image) : asset('adminAssets/images/default-page-banner.png') }}" alt="banner_image"/> </td> <td> {!! Str::limit($goldstarSection->content, 100) !!} </td> <td> <a href="{{ route('goldstarSection.edit', $goldstarSection) }}" class="btn btn-success btn-sm ml-3 d-inline-block"> <i class="icon-open"></i> Edit </a> </td> </tr> @else <td colspan="3">No Contents</td> @endif </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]