Files
Scheduler/resources/views/livewire/view-bot.blade.php
Oskar-Mikael 378355ad5b
All checks were successful
Deploy App / deploy (push) Successful in 11s
Add bot logs
2025-08-31 21:54:18 +02:00

23 lines
764 B
PHP

<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>