@extends('admin.layouts.master')
@section('content')
Title |
Heading |
Content |
Created on |
Updated on |
Action |
@foreach($pages as $p)
{{ $p->title }} |
{{ $p->heading }} |
{{ \Illuminate\Support\Str::limit($p->content, 80, '...') }} |
{{ $p->created_at }} |
{{ $p->updated_at }} |
|
@endforeach
@endsection