diff --git a/app/Livewire/CameraCapture.php b/app/Livewire/CameraCapture.php index cd3e4fd..7d49f7f 100644 --- a/app/Livewire/CameraCapture.php +++ b/app/Livewire/CameraCapture.php @@ -27,7 +27,7 @@ class CameraCapture extends Component Storage::disk('public')->delete($job->image_path); $job->delete(); - $this->status = "Job #{$jobId} deleted"; + $this->status = "Photo #{$jobId} gelöscht"; } public function capture(string $imageData): void @@ -51,7 +51,7 @@ class CameraCapture extends Component ConvertToComic::dispatch($job); - $this->status = "Processing photo…"; + $this->status = "Verarbeite Foto…"; } public function render() diff --git a/resources/views/livewire/camera-capture.blade.php b/resources/views/livewire/camera-capture.blade.php index 48450fe..9454f18 100644 --- a/resources/views/livewire/camera-capture.blade.php +++ b/resources/views/livewire/camera-capture.blade.php @@ -34,14 +34,14 @@ @disabled($hasProcessing) class="mt-8 px-10 py-4 bg-white text-gray-950 font-semibold text-lg rounded-full shadow-lg hover:bg-gray-200 active:scale-95 transition-all duration-150 disabled:opacity-50 disabled:cursor-not-allowed"> {{ $hasProcessing ? 'Erstelle Bild...' : 'Foto aufnehmen' }} - Saving… + Speichere…
{{ $status }}
@if ($recentPhotos->isNotEmpty())
-

Recent Photos

+

Fotos

@foreach ($recentPhotos as $photo)