PATH:
home
/
lab2454c
/
westernclear.net
/
resources
/
views
/
admin
/
homepageManager
/
linkSection
@extends('admin.layout.adminMasterLayout') @section('title', 'Link Section') @section('content') <div class="content-wrapper"> <div class="text-right"> <a href="{{ route('linkSection.create') }}" class="btn btn-info font-weight-bold mb-3">+ Add More Links</a> </div> <div class="row"> <div class="col-lg-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title">Link Section</h4> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Icon</th> <th>Title</th> <th>Short Desc</th> <th>Link</th> <th>Action</th> </tr> </thead> <tbody> @forelse($linkSections as $linkSection) <tr> <td class="py-1"> <img src="{{ isset($linkSection->icon) ? config("app.url").Storage::url($linkSection->icon) : asset('adminAssets/images/default-page-banner.png') }}" alt="link_icon"/> </td> <td> {{ $linkSection->title ?? '--' }} </td> <td> {!! $linkSection->short_description ?? '--' !!} </td> <td> @if(!empty($linkSection->link)) <a href="{{ $linkSection->link }}" target="_blank">Link</a> @else -- @endif </td> <td> <a href="{{ route('linkSection.edit', $linkSection) }}" class="btn btn-success btn-sm ml-3 d-inline-block"> <i class="icon-open"></i> Edit </a> <div class="d-inline-block"> <form action="{{route('linkSection.destroy', $linkSection->id)}}" method="POST" > @csrf @method('DELETE') <button type="submit" class="btn btn-primary btn-sm" style="cursor: pointer;" onclick="return confirm('Are you sure?')"> Delete </button> </form> </div> </td> </tr> @empty <td colspan="5" class="text-center">No Link(s) Section Listed Yet</td> @endforelse </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]