@extends('layouts.backend') @section('extra_css') @endsection @section('content')

{{ Session::get('message') }}

Page List
@foreach(\App\Page::take(100)->skip(0)->orderBy('id','desc')->get() as $user) @endforeach
# Title URL Action
{{ $user->id }} {{ $user->title }} {{ route('page.view', $id = $user->id) }}
{{ csrf_field() }}
@endsection @section('extra_js') @endsection