@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.name') }} {{ __('dashboard.locale') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }} {!! str_limit(strip_tags($row->name), 50, ' ...') !!} {{ $row->code }} @if( $row->default == 1 ) {{ __('dashboard.default') }} @else {{ __('dashboard.make_default') }} @endif @include($view.'.edit') @include('admin.inc.delete')
@endsection