@extends('core::layouts.app') @section('title', __('Blogs')) @section('content')

@lang('Blogs')

@lang('Create blog')
@include('core::partials.admin-sidebar')
@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Category') @lang('Title') @lang('Thumb') @lang('Read times') @lang('Created at') @lang('Action')
{{ $item->category->name }} {{ $item->title }} {{ $item->title }} {{ $item->time_read }} {{ $item->created_at }} @if($item->is_active) @lang('Active') @else @lang('No Active') @endif
@if($item->is_featured) @lang('Featured') @endif
@endif
{{ $data->appends( Request::all() )->links() }}
@if($data->count() == 0)

@lang('No blog Found')

@lang("You don't have any blog").

@lang('New blog')
@endif
@stop