@extends('layouts.app') @section('content') @php $isEdit = isset($turntable) && $turntable->exists; $formAction = $isEdit ? route('turntables.update', $turntable) : route('turntables.store'); $pageTitle = $isEdit ? 'Edit Turntable' : 'Add Turntable'; $tonearm1 = $turntable->tonearms[0] ?? null; $tonearm2 = $turntable->tonearms[1] ?? null; $deckType = old('deck_type', $turntable->deck_type ?? 'Turntable'); $tonearmChangeable = old('tonearm_changeable', $turntable->tonearm_changeable ?? true); $cartridgeChangeable = old('cartridge_changeable', $turntable->cartridge_changeable ?? true); $supportsMultiple = old('supports_multiple_tonearms', $turntable->supports_multiple_tonearms ?? false); $isDefaultSelection = old('is_default_selection', $turntable->is_default_selection ?? false); @endphp
Secret Chord Analogue

{{ $pageTitle }}

Configure decks, tonearm capability, and cartridge assignment using the same panel-based interaction style employed throughout Play Log.
@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
Please correct the following:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if($isEdit) @method('PUT') @endif
Deck Details
Configuration
Notes & Actions
Cancel
@endsection