PATH:
home
/
lab2454c
/
aficb.com
/
resources
/
views
/
admin
/
homepageManager
/
title
@extends('admin.layout.adminMasterLayout') @section('title', 'Home Title List') @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">Home Title List</h4> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Image</th> <th>Explore title</th> <th>Product title</th> <th>Testimonial title</th> <th>Subscription title</th> <th>Contact title</th> <th>Action</th> </tr> </thead> <tbody> @forelse($homeTitles as $homeTitle) <tr> <td class="py-1"> <img src="{{ isset($homeTitle->service_image) ? config("app.url").Storage::url($homeTitle->service_image) : asset('adminAssets/images/default-page-banner.png') }}" alt="banner_image"/> </td> <td> {{ $homeTitle->explore_title }} </td> <td> {{ $homeTitle->product_title }} </td> <td> {{ $homeTitle->testimonial_title }} </td> <td> {{ $homeTitle->subscription_title }} </td> <td> {{ $homeTitle->contact_title }} </td> <td> <a href="{{ route('homeTitle.edit', $homeTitle) }}" class="btn btn-primary btn-sm ml-3"> <i class="icon-open"></i> Edit </a> </td> </tr> @empty <td colspan="5">No Titles Listed Yet</td> @endforelse </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]