mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Creates Slack Setting Form
This commit is contained in:
parent
b59dcc7b30
commit
0f8ee22053
21
app/Http/Livewire/SlackSettingsForm.php
Normal file
21
app/Http/Livewire/SlackSettingsForm.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?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');
|
||||
}
|
||||
|
||||
}
|
3
resources/views/livewire/slack-settings-form.blade.php
Normal file
3
resources/views/livewire/slack-settings-form.blade.php
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
{{-- In work, do what you enjoy. --}}
|
||||
</div>
|
Loading…
Reference in a new issue