@extends('layouts.app') @section('content') @php $isEdit = isset($tonearm) && $tonearm->exists; $formAction = $isEdit ? route('tonearms.update', $tonearm) : route('tonearms.store'); $pageTitle = $isEdit ? 'Edit Tonearm' : 'Add Tonearm'; $selectedRole = old('role', $tonearm->role ?? ''); $presetRoles = ['Stereo', 'Mono', '78', 'Other']; $isCustomRole = $selectedRole && !in_array($selectedRole, $presetRoles, true); @endphp
Secret Chord Analogue

{{ $pageTitle }}

Define tonearm assignment, playback role, and cartridge pairing using the same structured workflow as the Play Log and Albums screens.
@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
Tonearm Details
Build & Notes
Actions
Cancel
@endsection