mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-20 16:51:02 -05:00
6ea09aa017
fixes #4628
29 lines
685 B
PHP
29 lines
685 B
PHP
@extends('layout.with-main')
|
|
|
|
@section('title')
|
|
<title>
|
|
{{ $user->username }} {{ __('user.resurrections') }} - {{ config('other.title') }}
|
|
</title>
|
|
@endsection
|
|
|
|
@section('breadcrumbs')
|
|
<li class="breadcrumbV2">
|
|
<a href="{{ route('users.show', ['user' => $user]) }}" class="breadcrumb__link">
|
|
{{ $user->username }}
|
|
</a>
|
|
</li>
|
|
<li class="breadcrumb--active">
|
|
{{ __('user.resurrections') }}
|
|
</li>
|
|
@endsection
|
|
|
|
@section('nav-tabs')
|
|
@include('user.buttons.user')
|
|
@endsection
|
|
|
|
@section('page', 'page__user-resurrection--index')
|
|
|
|
@section('main')
|
|
@livewire('user-resurrections', ['userId' => $user->id])
|
|
@endsection
|