One Hat Cyber Team
Your IP :
3.145.179.11
Server IP :
104.21.32.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
resources
/
views
/
back
/
item
/
Edit File:
table.blade.php
@foreach($datas as $data) <tr id="product-bulk-delete"> <td><input type="checkbox" class="bulk-item" value="{{$data->id}}"></td> <td> <img src="{{ $data->thumbnail ? asset('assets/images/'.$data->thumbnail) : asset('assets/images/placeholder.png') }}" alt="Image Not Found"> </td> <td> {{ $data->name }} </td> <td> {{ PriceHelper::adminCurrencyPrice($data->discount_price) }} </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 ? __('Publish') : __('Unpublish') }} </button> <div class="dropdown-menu animated--fade-in" aria-labelledby="dropdownMenuButton"> <a class="dropdown-item" href="{{ route('back.item.status',[$data->id,1]) }}">{{ __('Publish') }}</a> <a class="dropdown-item" href="{{ route('back.item.status',[$data->id,0]) }}">{{ __('Unpublish') }}</a> </div> </div> </td> <td> <p class=" @if($data->is_type == 'undefine') @else bg-info badge text-white @endif "> @if($data->is_type == 'undefine') {{ __('Not Define') }} @else {{$data->is_type ? ucfirst(str_replace('_',' ',$data->is_type)) : __('undefine')}} @endif </p> </td> <td> {{ucfirst($data->item_type)}} </td> <td> <div class="dropdown"> <button class="btn btn-secondary btn-sm dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('Options') }} </button> <div class="dropdown-menu animated--fade-in" aria-labelledby="dropdownMenuButton"> @if ($data->item_type == 'normal') <a class="dropdown-item" href="{{ route('back.item.edit',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Edit') }}</a> @elseif($data->item_type =='digital') <a class="dropdown-item" href="{{ route('back.digital.item.edit',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Edit') }}</a> @elseif($data->item_type =='affiliate') <a class="dropdown-item" href="{{ route('back.affiliate.edit',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Edit') }}</a> @else <a class="dropdown-item" href="{{ route('back.license.item.edit',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Edit') }}</a> @endif @if($data->status == 1) <a class="dropdown-item" target="_blank" href="{{ route('front.product',$data->slug) }}"><i class="fas fa-angle-double-right"></i> {{ __('View') }}</a> @endif @if ($data->item_type == 'normal') <a class="dropdown-item" href="{{ route('back.attribute.index',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Attributes') }}</a> <a class="dropdown-item" href="{{ route('back.option.index',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Attribute Options') }}</a> @endif <a class="dropdown-item" href="{{ route('back.item.highlight',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Highlight') }}</a> <a class="dropdown-item" data-toggle="modal" data-target="#confirm-delete" href="javascript:;" data-href="{{ route('back.item.destroy',$data->id) }}"><i class="fas fa-angle-double-right"></i> {{ __('Delete') }}</a> </div> </div> </div> </td> </tr> @endforeach
Simpan