This commit is contained in:
22
resources/views/livewire/view-bot.blade.php
Normal file
22
resources/views/livewire/view-bot.blade.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<div>
|
||||
<div class="flex justify-between mb-4">
|
||||
<h1 class="text-2xl font-bold mb-4">
|
||||
{{ $bot->name }}
|
||||
</h1>
|
||||
<div>
|
||||
<button class="bg-green-600 p-2 text-white rounded-lg mr-2 cursor-pointer">
|
||||
<i class="fas fa-play"></i>
|
||||
<span wire:click="confirmRunBot({{ $bot->id }})" class="cursor-pointer">
|
||||
{{ __('Run Bot') }}
|
||||
</span>
|
||||
<button
|
||||
class="bg-gray-600 p-2 text-white rounded-lg cursor-pointer"
|
||||
wire:navigate
|
||||
href="{{ route('bots.edit', $bot) }}"
|
||||
>
|
||||
<i class="fas fa-edit"></i>
|
||||
{{ __('Edit Bot') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user