@extends('admin.layouts.master') @section('title', $title) @section('content')
@include('admin.inc.breadcrumb')
@include($view.'.create') {{ __('dashboard.refresh') }}

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

@foreach( $rows as $key => $row ) @endforeach
{{ __('dashboard.no') }} {{ __('dashboard.logo') }} {{ __('dashboard.title') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }} @if(is_file('uploads/'.$path.'/'.$row->image_path)) Logo @endif {!! 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')
@endsection