@extends('template.coin.layouts.base') @section('title', __('Investment Hostory')) @section('css') @endsection @section('content')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if(!empty($trans)) @foreach($trans as $tran) @endforeach @else @endif
ID Plan Amount Type Date
{{$tran->tx_no}} {{$tran->dplan()->name}} {{number_format($tran->amount,2 , '.',',')}} {{$tran->type}} {{\Carbon\Carbon::parse($tran->created_at)->toDayDateTimeString()}}
No data available in table
@endsection