@extends('layouts.main') @section('content')

Dashboard

Servers {{Auth::user()->servers()->count()}}
Credits {{Auth::user()->Credits()}}
Usage {{number_format($useage, 2, '.', '')}} p/m

Useful Links

Pterodactyl Panel
Use your servers on our pterodactyl panel (You can use the same login details)
phpMyAdmin
View your database online using phpMyAdmin
Discord
Need a helping hand? want to chat? got any questions? Join our discord!

Activity Log

    @foreach(Auth::user()->actions()->take(8)->orderBy('created_at' , 'desc')->get() as $log)
  • @switch($log->description) @case('created') @break @case('deleted') @break @case('updated') @break @endswitch {{ucfirst($log->description)}} {{ explode("\\" , $log->subject_type)[2]}} {{$log->created_at->diffForHumans()}}
  • @endforeach
@endsection