@extends('layouts.admin') @section('title', tr('pages')) @section('content-header', tr('pages')) @section('breadcrumb')
  • Home
  • {{tr('pages')}}
  • @endsection @section('content') @include('notification.notify')
    {{tr('pages')}} {{tr('add_page')}}
    @if(count($pages) > 0) @foreach($pages as $i => $page_details) @endforeach
    #{{tr('id')}} {{tr('heading')}} {{tr('page_type')}} {{tr('action')}}
    {{showEntries($_GET,$i+1)}} {{$page_details->heading}} {{$page_details->type}}
    {{$pages->links()}}
    @else

    {{tr('no_result_found')}}

    @endif
    @endsection