Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
resources
/
views
/
millage
/
user
:
thistory.blade.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
@extends('layouts.millage') @section('title', $title) @section('content') <!-- Page title --> <div class="page-title"> <div class="row justify-content-between align-items-center"> <div class="mb-3 col-md-6 mb-md-0"> <h5 class="mb-0 h3 font-weight-400">Your ROI history</h5> </div> </div> </div> <x-danger-alert /> <x-success-alert /> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div class="mb-5 row"> <div class="p-2 text-center p-md-4 col-12"> <div class="table-responsive"> <table class="table table-hover"> <thead class="font-weight-bold bg-light"> <tr> <th>Plan</th> <th>Amount</th> <th>Type</th> <th>Date created</th> </tr> </thead> <tbody> @foreach ($t_history as $history) <tr> <td>{{ $history->plan }}</td> <td>{{ $settings->currency }}{{ number_format($history->amount, 2, '.', ',') }} </td> <td>{{ $history->type }}</td> <td>{{ \Carbon\Carbon::parse($history->created_at)->toDayDateTimeString() }} </td> </tr> @endforeach </tbody> </table> </div> {{ $t_history->links() }} </div> </div> </div> </div> </div> </div> @endsection