23 lines
764 B
PHP
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>
|