@extends('backend.layouts.app') @section('page-title', trans('app.terminal')) @section('page-heading', trans('app.terminal')) @section('content')
@include('backend.partials.messages')
@lang('app.terminal') Details
@if (Auth::user()->hasRole('admin')) @endif

{{$response['terminal']->username}}

Balance

{{ number_format(floatval($response['terminal']->balance), 2, '.', '') }}

Total In

{{ number_format(floatval($response['terminal']->total_in), 2, '.', '') }}

Total Out

{{ number_format(floatval($response['terminal']->total_out), 2, '.', '') }}

Total

{{ number_format(floatval($response['terminal']->count_balance), 2, '.', '') }}

Add

Out

@include('backend.terminal.modals.add_credit') @include('backend.terminal.modals.out_credit') @include('backend.terminal.modals.terminal_add')
@stop @section('scripts') @stop