@extends('admin.layouts.app') @section('title', $user->name) @section('heading', 'User: '.$user->name) @section('content')
{{ $user->name }}
{{ $user->email }}
{{ $user->phone ?? '—' }}
@if($user->is_admin) Admin @else User @endif
Joined {{ $user->created_at->format('M d, Y') }}
@if($user->id !== auth()->id()) @endif BackNo orders yet.
@endif