@extends('dashboard.layouts.main')
@section('title', localize('Dashboard'))
@section("actions")
@endsection
@section('content')
Total Storage:
{{auth()->user()->total_storage / 1024}} GB
Use Storage:
{{round(auth()->user()->used_storage / 1024,2)}} GB
Free Storage:
{{round(auth()->user()->free_storage / 1024,2)}} GB
@stop
@push('extra-scripts')
@endpush
@push('extra-styles')
@endpush