@extends('layouts.admin.base') @section('top-script') @endsection @section('page-title') Calculator Logs @endsection @section('content')
@include('admin.settings.layouts.sidebard')
@foreach ($logs as $log) @endforeach
User Plan System Wallet Amount Date Added

{{ $log->user->name }}

{{ $log->plan->name }}

@if ($log->system_wallet)

{{ $log->system_wallet->name }} ({{ $log->system_wallet->cryptocurrency }})

@endif

{{ formatMoney($log->amount) }}

{{ timeAgo($log->created_at) }}

@endsection @section('scripts') @endsection