@extends('admin.layouts.master') @section('title') Pages - List @endsection @section('content')
Website Pages
All Pages
{{-- --}} Create New Page
@php $a=1; @endphp @foreach ($pages as $page) @php $a++; @endphp @endforeach
# Name URL Action
{{$a}} {{$page->title}} {{ url($page->slug) }}
{{-- --}}

Showing {{ $pages->count() }} of {{ $pages->total() }} Results

    @foreach($pages->links()->elements[0] as $page => $link)
  • {{ $page }}
  • @endforeach
@endsection @section('scripts') @endsection