@extends('cfp.layouts.master') @section('content')

{{ __("cfp.Characters") }} all characters

@csrf
@if (request()->query("search")) @endif
@include('cfp.components.error_alert')
@forelse ($chars as $char) @empty @endforelse
USN {{ __("cfp.PlayerNick") }} {{ __("cfp.PlayerAuthority") }} {{ __("cfp.EXP") }} {{ __("cfp.Level") }} {{ __("cfp.LastPlayDate") }} {{ __("cfp.RegisterDate") }} {{ __("cfp.Actions") }}
{{ $char->USN }} {{ $char->NICK }} {!! Helper::web_getCharAuthority($char->AUTHORITY) !!} {{ number_format($char->EXP) }} rank {{ Helper::date_stringFormat($char->LAST_PLAY_DATE) }} {{ Helper::date_stringFormat($char->REG_DATE, false) }}
USN) }}" class="btn btn-sm btn-info tp" data-tippy-content="{{ __("cfp.SeeDetails") }}"> USN) }}" class="btn btn-sm btn-primary tp" data-tippy-content="{{ __("cfp.SeeAccount") }}"> addMinute(), ["alpha" => "nick"]) }}" data-title="{{ __("cfp.WhatsNewNick") }}" data-placeholder="{{ __("cfp.NewNick") }} ..." data-input="text" data-usn="{{ $char->USN }}" data-reload="true" data-tippy-content="{{ __("cfp.ChangeNick") }}"> @if ($user_data->AUTHORITY_LEV >= 3) addMinute(), ["alpha" => "authority"]) }}" data-title="{{ __("cfp.WhatsNewAuthority") }}" data-placeholder="{{ __("cfp.NewAuthority") }} ..." data-input="select" data-select="true" data-options-url="{{ route("cfp.api.getCharAuthority") }}" data-usn="{{ $char->USN }}" data-reload="true" data-tippy-content="{{ __("cfp.ChangeAuthority") }}"> @endif
{{ __("cfp.NoCharacters") }}
{{ $chars->links() }}
@endsection