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

{{ $title }}

@foreach( $rows as $key => $row ) @endforeach
{{ __('dashboard.no') }} {{ __('dashboard.title') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }} {!! str_limit(strip_tags($row->title), 50, ' ...') !!} @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif @include($view.'.show') @include($view.'.edit')
@endsection