PATH:
home
/
lab2454c
/
aficb.com
/
resources
/
views
/
admin
/
about
@extends('admin.layout.adminMasterLayout') @section('title', 'About Us Page Content') @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">About Us Page Content</h4> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Top Right Image</th> <th>Bottom Left Image</th> <th>Bottom Right Image</th> <th>Action</th> </tr> </thead> <tbody> @forelse($abouts as $about) <tr> <td class="py-1"> <img src="{{ isset($about->top_right_image) ? config("app.url").Storage::url($about->top_right_image) : asset('assets/assets/about1.jpg') }}" alt="featured_news_image"/> </td> <td class="py-1"> <img src="{{ isset($about->bottom_left_image) ? config("app.url").Storage::url($about->bottom_left_image) : asset('assets/assets/about2.png') }}" alt="featured_news_image"/> </td> <td class="py-1"> <img src="{{ isset($about->bottom_right_image) ? config("app.url").Storage::url($about->bottom_right_image) : asset('assets/assets/about3.png') }}" alt="featured_news_image"/> </td> <td> <a href="{{ route('about.edit', $about) }}" class="btn btn-primary btn-sm"><i class="icon-open"></i> Edit</a> </td> </tr> @empty <td colspan="5">About Us Data Not Listed</td> @endforelse </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] scripts.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]