@extends('layouts.app') @section('title', __('inventory.page_title', ['name' => $character->CharName16])) @section('content')

{{ __('inventory.equipment_title', ['name' => $character->CharName16]) }}

{{ __('inventory.character_id') }} {{ $character->CharID }}

{{ __('inventory.level') }} {{ $character->CurLevel ?? 1 }} - {{ __('inventory.job') }} {{ $character->JobType ?? 0 }}

{{ __('inventory.character_info') }}

{{ __('inventory.name') }} {{ $character->CharName16 }}
{{ __('inventory.level') }} {{ $character->CurLevel ?? 1 }}
{{ __('inventory.experience') }} {{ number_format($character->ExpOffset ?? 0) }}
{{ __('inventory.gold') }} {{ number_format($character->RemainGold ?? 0) }}
{{ __('inventory.hp') }} {{ $character->HP ?? 0 }}
{{ __('inventory.mp') }} {{ $character->MP ?? 0 }}
@push('scripts') @endpush @endsection