@extends('layouts.master') @section('content')
@if(auth()->user()->hasRole('admin'))
Back to Templates

{{ $template->name }}

100%
@else
Back to Templates

{{ $template->name }}

Template created on {{ $template->created_at->format('M d, Y') }} by {{ $template->creator->name }}

Selected Categories

@php $selectedNodes = \App\Models\Category::whereIn('id', $checkedCategories)->get(); @endphp
@foreach($selectedNodes as $node) {{ $node->name }} @endforeach
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush