mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
22 lines
261 B
PHP
22 lines
261 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Livewire;
|
||
|
|
||
|
use Livewire\Component;
|
||
|
use App\Models\Setting;
|
||
|
|
||
|
|
||
|
|
||
|
class SlackSettingsForm extends Component
|
||
|
{
|
||
|
public Setting $setting;
|
||
|
|
||
|
|
||
|
|
||
|
public function render()
|
||
|
{
|
||
|
return view('livewire.slack-settings-form');
|
||
|
}
|
||
|
|
||
|
}
|