transcription_status === 'processing') { return back()->with('error', 'Transcription is already in progress.'); } $driver = $request->validated('driver'); $recording->update([ 'transcription_driver' => $driver, 'ollama_url' => $driver === 'ollama' ? rtrim($request->validated('ollama_url'), '/') : null, 'transcription_status' => 'pending', 'transcription_progress' => 'Queued — waiting to start…', 'transcription_percent' => 5, 'transcription_started_at' => now(), 'transcription_error' => null, 'transcript' => null, 'transcribed_at' => null, ]); TranscribeRecording::dispatch($recording->fresh()); return back()->with('success', 'Transcription started. Progress updates below.'); } }