PATH:
home
/
lab2454c
/
healthvalidate.com
/
resources
/
views
/
admin
/
dashboard
/
dynamic_pages
@extends('layouts.admin.dashboard') @section('content') <div class="inner__body__wrapp faq__wrap"> @include('validation.flashmessage') <div class="list__header__wrapp"> <h2>{{ __('Page Lists')}}</h2> <a href="{{ route('admin.dynamicPage.create') }}" class="btn btn-primary"> <i class="fa fa-plus" aria-hidden="true"></i> Add New Page </a> </div> <div class="table-responsive"> <table class="table table-sm"> <thead> <tr> <th scope="col">{{ __('Name')}}</th> <th scope="col">{{ __('Action')}}</th> </tr> </thead> <tbody> @forelse($pages as $page) <tr class="manage__user__data__table"> <td> <a href="{{ route('showDynamicPages', $page->slug) }}" target="_blank"> {{ $page->name }} </a> </th> <td> <ul class="list-inline m-0"> <li class="list-inline-item"> <a href='{{ route("admin.dynamicPage.edit", $page)}}' class="btn btn-success btn-sm" title="{{ __('Edit')}}"> <i class="fa fa-eye"></i></a> </li> </ul> </td> </tr> @empty <td colspan="4">No Pages Found</td> @endforelse </tbody> </table> {!! $pages->links('pagination::bootstrap-4') !!} </div> </div> @endsection
[-] form.blade.php
[edit]
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]