PATH:
home
/
lab2454c
/
tripvare.com
/
resources
/
views
/
admin
/
dashboard
/
manage_help
@extends('layouts.admin.dashboard') @section('content') <div class="inner__body__wrapp faq__wrap"> @include('validation.flashmessage') <div class="list__header__wrapp"> <h2>{{ __('Help Lists')}}</h2> <a href="{{ route('admin.help.create') }}" class="btn btn-primary"> <i class="fa fa-plus" aria-hidden="true"></i> Add New Help </a> </div> <div class="table-responsive"> <table class="table table-sm"> <thead> <tr> <th scope="col">{{ __('Question')}}</th> <th scope="col">{{ __('Answer')}}</th> <th scope="col">{{ __('Action')}}</th> </tr> </thead> <tbody> @forelse($helps as $help) <tr class="manage__user__data__table"> <td>{{ $help->question }}</th> <td>{!! \Illuminate\Support\Str::words($help->answer, 10,'...') !!}</td> <td> <ul class="list-inline m-0"> <li class="list-inline-item"> <a href='{{ route("admin.help.edit", $help)}}' class="btn btn-success btn-sm" title="{{ __('Edit')}}"> <i class="fa fa-eye"></i></a> </li> </ul> </td> </tr> @empty <td colspan="4">No Helps Found</td> @endforelse </tbody> </table> {!! $helps->links('pagination::bootstrap-4') !!} </div> </div> @endsection
[-] form.blade.php
[edit]
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]