PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
admin
/
frontend
/
productContent
@extends('admin.layouts.app') @section('panel') <div class="row"> <div class="col-lg-12"> <div class="card b-radius--10 "> <div class="card-body p-0"> <div class="table-responsive--sm table-responsive"> <table class="table table--light style--two"> <thead> <tr> <th>@lang('Title')</th> <th>@lang('Description')</th> <th>@lang('Action')</th> </tr> </thead> <tbody> @forelse($productContents as $productContent) <tr> <td data-label="@lang('Title')"> <span>{{__(str_limit($productContent->title, 30))}}</span> </td> <td data-label="@lang('Description')"> <span>{{__(str_limit($productContent->description, 50))}}</span> </td> <td data-label="@lang('Action')"> <a href="{{ route('admin.frontend.productContent.edit', $productContent) }}" class="icon-btn btn--primary ml-1" title="Edit"> <i class="las la-pen"></i> </a> </td> </tr> @empty <tr> <td class="text-muted text-center" colspan="100%"> No Content Available </td> </tr> @endforelse </tbody> </table> </div> </div> </div> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]