@extends('layouts.app') @section('content') @include('layouts.top-header', [ 'title' => __('Pay to Owner History table'), 'class' => 'col-lg-7', ])
| {{ __('#') }} | {{ __('Name') }} | {{ __('Email') }} | {{ __('Currency') }} | {{ __('Amount') }} | {{ __('Transaction ID') }} | {{ __('Date') }} |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->owner->name }} | {{ $item->owner->email }} | {{$item->currency}} | {{$item->amount}} | {{$item->transaction_id}} | {{ \Carbon\Carbon::parse($item->created_at)->format('m/d/y h:s') }} |