@extends('admin.layouts.masterlayout') @section('title') View Shop User @endsection @section('head_title') Shop Users @endsection @section('content')
{{ $user->name ?? '-' }}
{{ $user->email ?? '-' }}
{{ $user->phone ?? '-' }}
{{ !empty($user->created_at) ? $user->created_at->format('F d, Y') : '-' }}
{{ $user->address ?? '-' }}
{{ $user->country ?? '-' }}
{{ $user->state ?? '-' }}
{{ $user->city ?? '-' }}