Added Extruder Livewire components with Create, Edit, Show, and Index. Introduced corresponding routes, views, and navigation updates. Enhanced Buildplate and Manufacturer views for improved linking and consistency.

This commit is contained in:
2025-12-14 04:33:55 +01:00
parent 95f0154235
commit 4759df9077
12 changed files with 449 additions and 25 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App\Livewire\Extruder;
use App\Models\Extruder as Model;
use Livewire\Attributes\Title;
use Livewire\Component;
#[title('Extruders')]
class ShowExtruder extends Component
{
public Model $extruder ;
public function back(){
return $this->redirectRoute('extruder.index', navigate: true);
}
public function edit($id){
return $this->redirectRoute('extruder.edit', $id, navigate: true);
}
public function render()
{
return view('livewire.extruder.show', [
]);
}
}