PATH:
home
/
lab2454c
/
tripvare.com
/
resources
/
views
/
admin
/
dashboard
/
vaccination_review_content
@extends('layouts.admin.dashboard') @section('content') <div class="inner__body__wrapp faq__wrap"> @include('validation.flashmessage') <div class="list__header__wrapp"> <h2>{{ __('Review Content')}}</h2> </div> <div class="table-responsive"> <table class="table table-sm"> <thead> <tr> <th scope="col">{{ __('Review Title')}}</th> <th scope="col">{{ __('Review Content')}}</th> <th scope="col">{{ __('Action')}}</th> </tr> </thead> <tbody> @forelse($vaccinationReviewContents as $vaccinationReviewContent) <tr class="manage__user__data__table"> <td>{{ $vaccinationReviewContent->vaccination_review_title }}</th> <td>{!! $vaccinationReviewContent->vaccination_review_content !!}</th> <td> <ul class="list-inline m-0"> <li class="list-inline-item"> <a href='{{ route("admin.vaccinationReviewContent.edit", $vaccinationReviewContent)}}' class="btn btn-success btn-sm" title="{{ __('Edit')}}"> <i class="fa fa-eye"></i></a> </li> </ul> </td> </tr> @empty <td colspan="5">No Review Data Found</td> @endforelse </tbody> </table> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]