@extends('layouts.layouts_dashboard')
@section('title', 'User Details')
@section('content')
{{ $user->name }}
@if ($user->usertype == 'dev')
Developer
@else
Vendor
@endif
{{ $user->created_at->format('d M Y H:i') }}
{{ $user->updated_at->format('d M Y H:i') }}
@endsection