@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Customers']) @endsection @section('content')
| {{ __('Name') }} | {{ __('Email') }} | {{ __('Domain') }} | {{ __('Plan') }} | {{ __('Status') }} | {{ __('Order at') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| {{ $row->name }} | {{ $row->email }} | {{ $row->user_domain->domain ?? '' }} | {{ $row->user_plan->plan_info->name ?? '' }} | @if($row->status==1) {{ __('Active') }} @elseif($row->status==0) {{ __('Trash') }} @elseif($row->status==2) {{ __('Suspended') }} @elseif($row->status==3) {{ __('Pending') }} @endif | {{ $row->user_plan->created_at->format('d-F-Y') }} |
|