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

@lang('Blog categories')

@lang('Create category')
@include('core::partials.admin-sidebar')
@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Name') @lang('Thumb') @lang('Created at') @lang('Action')
{{ $item->name }} {{ $item->name }} {{ $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 categories Found')

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

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