@extends('backend.layouts.app')
@section('content')
Image |
Title |
Date |
Author |
Content |
Tag |
Action |
@foreach ($blogs as $items)
|
{{ $items->title }} |
{{ $items->date }} |
{{ $items->author }} |
{{ Str::limit(html_entity_decode(strip_tags($items->content)), 80, '...') }} |
{{ $items->tag }} |
|
@endforeach
@endsection