PATH:
home
/
lab2454c
/
tripvare.com
/
resources
/
views
/
admin
/
dashboard
/
manage_pages
@extends('layouts.admin.dashboard') @section('content') <div class="inner__body__wrapp faq__wrap"> @include('validation.flashmessage') <div class="list__header__wrapp"> <h2>{{ __('messages.admin.manage_pages.heading')}}</h2> </div> <div class="table-responsive"> <table class="table table-sm"> <thead> <tr> <th scope="col">{{ __('messages.admin.manage_pages.list.heading.name')}}</th> <th scope="col">{{ __('messages.admin.manage_pages.list.heading.meta_key')}}</th> <th scope="col">{{ __('messages.admin.manage_pages.list.heading.meta_description')}}</th> <th scope="col">{{ __('messages.admin.manage_pages.list.heading.btn_status')}}</th> </tr> </thead> <tbody> @foreach($pages as $page) <tr class="manage__user__data__table"> <td>{{ $page->title }}</th> <td>{{ $page->meta_key }}</td> <td>{!! \Illuminate\Support\Str::words($page->meta_description, 10,'...') !!}</td> <td> <ul class="list-inline m-0"> <li class="list-inline-item"> <a href='{{ route("admin.manage-page", ["id"=>$page->id,"page"=>$pages->currentPage()])}}' class="btn btn-success btn-sm rounded-0" type="button" data-toggle="tooltip" data-placement="top" title="{{ __('messages.admin.manage_users.list.heading.manage')}}"><i class="fa fa-eye"></i></a> </li> </ul> </td> </tr> @endforeach </tbody> </table> {!! $pages->links('pagination::bootstrap-4') !!} </div> </div> @endsection
[+]
..
[-] list.blade.php
[edit]
[-] page_info.blade.php
[edit]