@extends('admin.layouts.master') @section('title', $title) @section('content')
| {{ __('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') @include('admin.inc.delete') |