@extends('layouts.app') @section('title', __('app.teacher.usage.title') . ' - ' . config('app.name', 'CurioGPT')) @section('content')
{{ __('app.teacher.usage.based_on_configured_pricing') }}
{{ __('app.teacher.usage.no_usage_yet') }}
@else| {{ __('app.common.model') }} | {{ __('app.teacher.usage.input_tokens') }} | {{ __('app.teacher.usage.output_tokens') }} | {{ __('app.teacher.usage.total_tokens') }} | {{ __('app.teacher.usage.est_cost_usd') }} |
|---|---|---|---|---|
| {{ $row['model'] }} | {{ number_format($row['input_tokens']) }} | {{ number_format($row['output_tokens']) }} | {{ number_format($row['total_tokens']) }} | @if (is_null($row['estimated_cost_usd'])) {{ __('app.common.price_missing') }} @else ${{ number_format($row['estimated_cost_usd'], 4) }} @endif |
{{ __('app.teacher.usage.todays_usage_only') }}
{{ __('app.teacher.usage.no_usage_today') }}
@else| {{ __('app.common.model') }} | {{ __('app.teacher.usage.input_tokens') }} | {{ __('app.teacher.usage.output_tokens') }} | {{ __('app.teacher.usage.total_tokens') }} | {{ __('app.teacher.usage.est_cost_usd') }} |
|---|---|---|---|---|
| {{ $row['model'] }} | {{ number_format($row['input_tokens']) }} | {{ number_format($row['output_tokens']) }} | {{ number_format($row['total_tokens']) }} | @if (is_null($row['estimated_cost_usd'])) {{ __('app.common.price_missing') }} @else ${{ number_format($row['estimated_cost_usd'], 4) }} @endif |
{{ __('app.teacher.usage.top_users_total') }}
{{ $row['name'] }}
{{ number_format($row['total_tokens']) }}
{{ __('app.common.tokens') }}
{{ __('app.teacher.usage.top_users_today') }}
{{ $row['name'] }}
{{ number_format($row['total_tokens']) }}
{{ __('app.common.tokens') }}
{{ __('app.teacher.usage.total_tokens_per_day') }}
{{ __('app.teacher.usage.no_recent_usage') }}
@else| {{ __('app.common.date') }} | {{ __('app.teacher.usage.total_tokens') }} |
|---|---|
| {{ $row['date'] }} | {{ number_format($row['total_tokens']) }} |