@extends('voyager::master')
@section('page_title', __('voyager::generic.viewing').' '. $dataType->getTranslatedAttribute('display_name_plural') . ' ')
@section('css')
@endsection
@section('page_header')
{{ $dataType->getTranslatedAttribute('display_name_plural') }}
@can('add', app($dataType->model_name))
slug".'.create') }}" class="btn btn-success btn-add-new">
{{ __('voyager::generic.add_new') }}
@endcan
@can('delete', app($dataType->model_name))
@include('voyager::partials.bulk-delete')
@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')
@include('voyager::alerts')
{{-- Single delete modal--}}