⚝
One Hat Cyber Team
⚝
Your IP:
3.142.245.16
Server IP:
162.254.39.145
Server:
Linux premium289.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
favoaysf
/
www
/
resources
/
views
/
back
/
tax
/
View File Name :
table.blade.php
@foreach($datas as $data) <tr> <td> {{ $data->name }} </td> <td> {{ $data->value }}% </td> <td> <div class="dropdown"> <button class="btn btn-{{ $data->status == 1 ? 'success' : 'danger' }} btn-sm dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ $data->status == 1 ? __('Enabled') : __('Disabled') }} </button> <div class="dropdown-menu animated--fade-in" aria-labelledby="dropdownMenuButton"> <a class="dropdown-item" href="{{ route('back.tax.status',[$data->id,1]) }}">{{ __('Enable') }}</a> <a class="dropdown-item" href="{{ route('back.tax.status',[$data->id,0]) }}">{{ __('Disable') }}</a> </div> </div> </div> </td> <td> <div class="action-list"> <a class="btn btn-secondary btn-sm " href="{{ route('back.tax.edit',[$data->id]) }}"> <i class="fas fa-edit"></i> </a> <a class="btn btn-danger btn-sm " data-toggle="modal" data-target="#confirm-delete" href="javascript:;" data-href="{{ route('back.tax.destroy',[$data->id]) }}"> <i class="fas fa-trash-alt"></i> </a> </div> </td> </tr> @endforeach