@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Blogs'), 'buttons'=>[ [ 'name'=>' '.__('Create a blog post'), 'url'=>route('admin.blog.create'), ] ] ]) @endsection @section('content')
{{ __('Title') }} | {{ __('Url') }} | {{ __('Status') }} | {{ __('Created At') }} | {{ __('Action') }} |
---|---|---|---|---|
|
{{ Str::limit(url('blog/'.$post->slug),50) }} | {{ $post->status == 1 ? __('Active') : __('Draft') }} | {{ $post->created_at->format('F-d-Y') }} |
|