@extends('layouts.admin') @section('content')
@include('admin.partials.table-header')
@foreach($listings as $listing) @endforeach
{{__('User')}}
{!! gravatar($listing->name,$listing->avatarurl,'h-10 w-10 rounded-full bg-primary-500 text-xs font-bold flex items-center justify-center text-white') !!}
{{$listing->name}}
{{$listing->username}}
@if(auth()->user()->id != $listing->id) @endif
@include('admin.partials.table-footer')
@endsection