@extends('admin.layouts.master') @section('title', $title) @section('content')
@include('admin.inc.breadcrumb')

{{ $title }} {{ __('dashboard.list') }}

@foreach( $rows as $key => $row ) @endforeach
{{ __('dashboard.no') }} {{ __('dashboard.thumbnail') }} {{ __('dashboard.title') }} {{ __('dashboard.category') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }} @if(is_file('uploads/'.$path.'/'.$row->image_path)) Blog @endif {!! str_limit(strip_tags($row->title), 50, ' ...') !!} {{ $row->category->title }} @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif @include('admin.inc.delete')
@endsection