@extends('layouts.admin') @section('content')
|
{{__('User')}}
|
{{__('Plan')}}
|
{{__('Payment method')}}
|
{{__('Status')}}
|
|
|---|---|---|---|---|
|
{!! gravatar($listing->user->name,$listing->user->avatarurl,'h-10 w-10 rounded-full bg-primary-500 text-xs font-bold flex items-center justify-center text-white') !!}
{{$listing->user->name}}
{{$listing->user->email}}
|
{{$listing->plan->name}}
|
{{$listing->payment_method}}
|
@if($listing->status == 'completed')
{{__('Completed')}}
@elseif($listing->status == 'cancelled')
{{__('Cancelled')}}
@else
{{__('Pending')}}
@endif
|
|