@extends('layouts.admin') @push('title', get_phrase('Blog')) @push('meta')@endpush @push('css')@endpush @section('content')
# | {{ get_phrase('Creator') }} | {{ get_phrase('Title') }} | {{ get_phrase('Category') }} | {{ get_phrase('Status') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|---|
{{ $key + 1 }} |
{{ $blog->user->name }}{{ $blog->user->email }} |
{{ date('D, d-M-Y', strtotime($blog->created_at)) }}
|
@php
$category = DB::table('blog_categories')
->where('id', $blog->category_id)
->first();
@endphp
{{ $category->title }} |
status) checked @endif>
|
{{ get_phrase('Showing') . ' ' . count($blogs) . ' ' . get_phrase('of') . ' ' . $blogs->total() . ' ' . get_phrase('data') }}
{{ $blogs->links() }}