PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
admin
/
frontend
/
faqContent
@extends('admin.layouts.app') @section('panel') <div class="row"> <div class="col-lg-12"> <div class="col-lg-12 col-sm-6 text-sm-right mt-sm-0 mb-3"> <a href="{{ route('admin.frontend.faqContent.create') }}" class="btn btn-sm btn--primary box--shadow1 text--small addCity"> <i class="fa fa-plus"></i>Add New Content </a> </div> <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('Question')</th> <th>@lang('Answer')</th> <th>@lang('Action')</th> </tr> </thead> <tbody> @forelse($faqContents as $faqContent) <tr> <td data-label="@lang('Question')"> <span>{{__(str_limit($faqContent->question, 60))}}</span> </td> <td data-label="@lang('Answer')"> <span>{{__(str_limit($faqContent->answer, 80))}}</span> </td> <td data-label="@lang('Action')"> <a href="{{ route('admin.frontend.faqContent.edit', $faqContent) }}" 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]
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]