@extends('layouts.admin') @section('content')
@include('admin.partials.table-header')
@foreach($listings as $listing) @endforeach
{{__('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
@include('admin.partials.table-footer')
@endsection