151 lines
4.3 KiB
PHP
151 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Filament;
|
|
|
|
use Livewire\Component;
|
|
use App\Models\Filament as Model;
|
|
use App\Models\Color as Color;
|
|
use App\Models\FilamentType as Type;
|
|
use App\Models\Manufacturer as Manufacturer;
|
|
use Livewire\WithPagination;
|
|
use Livewire\Attributes\title;
|
|
use Livewire\Attributes\Validate;
|
|
use Flux\Flux;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
#[title('Filaments')]
|
|
class Filament extends Component
|
|
{
|
|
use WithPagination;
|
|
|
|
#[Validate('required')]
|
|
public $name = '';
|
|
|
|
public $description = '';
|
|
public $diameter = '1.75';
|
|
public $color_id = '';
|
|
public $type_id = '';
|
|
public $manufacturer_id = '';
|
|
public $weight = '1000';
|
|
public $price = '0';
|
|
public $stock = '0';
|
|
|
|
public $search = '';
|
|
|
|
public $editid = '';
|
|
public $deleteid = '';
|
|
|
|
public function create() {
|
|
@Auth::check();
|
|
|
|
// Validate
|
|
$this->validate();
|
|
|
|
$filament = new Model();
|
|
$filament->name = $this->name;
|
|
$filament->description = $this->description;
|
|
$filament->diameter = $this->diameter;
|
|
$filament->color_id = $this->color_id;
|
|
$filament->filament_type_id = $this->type_id;
|
|
$filament->manufacturer_id = $this->manufacturer_id;
|
|
$filament->weight = $this->weight;
|
|
$filament->price = $this->price;
|
|
$filament->stock = $this->stock;
|
|
$filament->save();
|
|
|
|
// Clear the form
|
|
$this->resetInputFields();
|
|
|
|
// Close the modal
|
|
Flux::modal('createModal')->close();
|
|
}
|
|
|
|
public function edit($filamentid) {
|
|
@Auth::check();
|
|
|
|
$editid = $filamentid;
|
|
$this->editid = $editid;
|
|
|
|
$filament = Model::findOrFail($editid);
|
|
|
|
$this->name = $filament->name;
|
|
$this->description = $filament->description;
|
|
$this->diameter = $filament->diameter;
|
|
$this->color_id = $filament->color_id;
|
|
$this->type_id = $filament->filament_type_id;
|
|
$this->manufacturer_id = $filament->manufacturer_id;
|
|
$this->weight = $filament->weight;
|
|
$this->price = $filament->price;
|
|
$this->stock = $filament->stock;
|
|
|
|
Flux::modal('editModal')->show();
|
|
}
|
|
public function save($editid) {
|
|
@Auth::check();
|
|
|
|
$filament = Model::findOrFail($editid);
|
|
$filament->name = $this->name;
|
|
$filament->description = $this->description;
|
|
$filament->diameter = $this->diameter;
|
|
$filament->color_id = $this->color_id;
|
|
$filament->filament_type_id = $this->type_id;
|
|
$filament->manufacturer_id = $this->manufacturer_id;
|
|
$filament->weight = $this->weight;
|
|
$filament->price = $this->price;
|
|
$filament->stock = $this->stock;
|
|
$filament->save();
|
|
|
|
$this->resetInputFields();
|
|
|
|
Flux::modal('editModal')->close();
|
|
}
|
|
|
|
public function deleteModal($filamentid) {
|
|
@Auth::check();
|
|
|
|
$deleteid = $filamentid;
|
|
$this->deleteid = $deleteid;
|
|
|
|
$filament = Model::findOrFail($deleteid);
|
|
$this->name = $filament->name;
|
|
$this->description = $filament->description;
|
|
$this->diameter = $filament->diameter;
|
|
$this->color_id = $filament->color_id;
|
|
$this->type_id = $filament->filament_type_id;
|
|
$this->manufacturer_id = $filament->manufacturer_id;
|
|
$this->weight = $filament->weight;
|
|
$this->price = $filament->price;
|
|
$this->stock = $filament->stock;
|
|
|
|
Flux::modal('deleteModal')->show();
|
|
}
|
|
public function delete($deleteid) {
|
|
@Auth::check();
|
|
|
|
$filament = Model::findOrFail($deleteid)->delete();
|
|
|
|
$this->deleteid = $deleteid;
|
|
Flux::modal('deleteModal')->close();
|
|
|
|
// Clear the form
|
|
$this->resetInputFields();
|
|
}
|
|
|
|
public function cancel() {
|
|
$this->resetInputFields();
|
|
Flux::modals()->close();
|
|
}
|
|
public function resetInputFields() {
|
|
$this->reset(['name', 'description', 'diameter', 'color_id', 'type_id', 'manufacturer_id', 'weight', 'price', 'stock', 'deleteid', 'editid']);
|
|
}
|
|
public function render()
|
|
{
|
|
return view('livewire.filament.filament', [
|
|
'filaments' => Model::search('name', $this->search)->paginate(50),
|
|
'colors' => Color::all(),
|
|
'manufacturers' => Manufacturer::all(),
|
|
'types' => Type::all()
|
|
]);
|
|
}
|
|
}
|