@extends('voyager::master')
@section('page_title', __('voyager::generic.viewing').' '.$dataType->display_name_plural)
@section('page_header')
{{ $dataType->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(Voyager::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')