@extends('layouts.master') @section('content')

User Requests

@if(auth()->user()->hasRole('admin'))
Reset
@endif
@foreach($templates as $template) @endforeach
ID Staff User Name Customer/Client Name Created Date Actions
#{{ $template->id }} {{ $template->creator->name ?? 'Unknown' }} {{ $template->name }} {{ $template->created_at->format('M d, Y') }}
View Edit
@csrf @method('DELETE')
@if($templates->isEmpty())
No templates found.
@endif
{{ $templates->links() }}
@endsection