@extends('voyager::master')
@section('page_title', __('voyager::generic.viewing').' '.$dataType->getTranslatedAttribute('display_name_plural'))
@section('page_header')
{{ $dataType->getTranslatedAttribute('display_name_plural') }}
@can('add', app($dataType->model_name))
{{ __('voyager::generic.add_new') }}
@endcan
@can('delete', app($dataType->model_name))
@include('voyager::partials.bulk-delete')
@endcan
@can('edit', app($dataType->model_name))
@if(isset($dataType->order_column) && isset($dataType->order_display_column))
{{ __('voyager::bread.order') }}
@endif
@endcan
@can('delete', app($dataType->model_name))
@if($usesSoftDeletes)
@endif
@endcan
@foreach($actions as $action)
@if (method_exists($action, 'massAction'))
@include('voyager::bread.partials.actions', ['action' => $action, 'data' => null])
@endif
@endforeach
@include('voyager::multilingual.language-selector')
@stop
@section('content')
@include('voyager::alerts')
@if ($isServerSide)
@endif