@extends('layouts.app') @section('title', 'Character Inventory - ' . $character->CharName16) @section('content')

{{ $character->CharName16 }}'s Equipment

Character ID: {{ $character->CharID }}

Level {{ $character->CurLevel ?? 1 }} - Job {{ $character->JobType ?? 0 }}

Character Information

Name: {{ $character->CharName16 }}
Level: {{ $character->CurLevel ?? 1 }}
Experience: {{ number_format($character->ExpOffset ?? 0) }}
Gold: {{ number_format($character->RemainGold ?? 0) }}
HP: {{ $character->HP ?? 0 }}
MP: {{ $character->MP ?? 0 }}
@push('scripts') @endpush @endsection