@extends('layouts.dash') @section('title', $title) @section('content')
Your ROI history
@foreach ($t_history as $history) @endforeach
Plan Amount Type Date created
{{ $history->plan }} {{ $settings->currency }}{{ number_format($history->amount, 2, '.', ',') }} {{ $history->type }} {{ \Carbon\Carbon::parse($history->created_at)->toDayDateTimeString() }}
{{ $t_history->links() }}
@endsection