32 lines
		
	
	
		
			739 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			739 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Livewire\Project\Application\Storages;
 | 
						|
 | 
						|
use Livewire\Component;
 | 
						|
 | 
						|
class Show extends Component
 | 
						|
{
 | 
						|
    public $storage;
 | 
						|
    protected $rules = [
 | 
						|
        'storage.name' => 'required|string',
 | 
						|
        'storage.mount_path' => 'required|string',
 | 
						|
        'storage.host_path' => 'string|nullable',
 | 
						|
    ];
 | 
						|
    protected $validationAttributes = [
 | 
						|
        'name' => 'name',
 | 
						|
        'mount_path' => 'mount',
 | 
						|
        'host_path' => 'host',
 | 
						|
    ];
 | 
						|
    public function submit()
 | 
						|
    {
 | 
						|
        $this->validate();
 | 
						|
        $this->storage->save();
 | 
						|
        $this->emit('success', 'Storage updated successfully');
 | 
						|
    }
 | 
						|
    public function delete()
 | 
						|
    {
 | 
						|
        $this->storage->delete();
 | 
						|
        $this->emit('refreshStorages');
 | 
						|
    }
 | 
						|
}
 |