@extends('sptransfer::layouts.admin') @section('title', 'SPTransfer') @section('content')
@csrf
Hub Transfer Settings

Price per request

The amount the pilot gets charged for every request (0 = disabled)

Type of charge

This option does not have any impact if your price per request is disabled

Limit per request

The limit in days the pilot has to wait until he can make another request (0 = disabled)

Discord Private Webhook URL

The Discord Webhook URL for private notifications

@csrf
Airline Transfer Settings

Price per request

The amount the pilot gets charged for every request (0 = disabled)

Type of charge

This option does not have any impact if your price per request is disabled

Limit per request

The limit in days the pilot has to wait until he can make another request (0 = disabled)

Discord Private Webhook URL

The Discord Webhook URL for private notifications

Hub Transfer Requests
@foreach($requests as $request) @endforeach
@sortablelink('id', 'ID') @sortablelink('user.name', 'Name') Current Request Transfer Reason @sortablelink('created_at', 'Date') @sortablelink('state', 'Status') Reject Reason Action
{{ $request->id }} {{ optional($request->user)->name ?? 'Deleted User' }} {{ $request->hub_initial_id }} {{ $request->hub_request_id }} {{ $request->reason }} {{ $request->created_at->format('d. F Y - H:i') }} UTC {{ Modules\SPTransfer\Models\Enums\Status::label($request->state) }} {{ $request->reject_reason ?? '-' }}
@csrf @if($request->state == 0) @endif
{{ $requests->withQueryString()->links('admin.pagination.default') }}
Airline Transfer Requests
@foreach($requests_airline as $request) @endforeach
@sortablelink('id', 'ID') @sortablelink('user.name', 'Name') Current Request Transfer Reason @sortablelink('created_at', 'Date') @sortablelink('state', 'Status') Reject Reason Action
{{ $request->id }} {{ optional($request->user)->name ?? 'Deleted User' }} {{ $request->airport_name }} {{ $request->airport_name }} {{ $request->reason }} {{ $request->created_at->format('d. F Y - H:i') }} UTC {{ Modules\SPTransfer\Models\Enums\Status::label($request->state) }} {{ $request->reject_reason ?? '-' }}
@csrf @if($request->state == 0) @endif
{{ $requests->withQueryString()->links('admin.pagination.default') }}

Crafted with by Sass-Projects

@endsection @section('scripts') @parent @endsection