⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
hrms.dev-unit.com
/
resources
/
views
/
user
/
View File Name :
plan.blade.php
@php $admin_payment_setting = App\Models\Utility::getAdminPaymentSetting(); @endphp <div class="modal-body"> <div class="card mb-2"> <div class="card-body table-border-style"> <div class="table-responsive"> <table class="table datatable"> <tbody> @foreach ($plans as $plan) <tr> <td> <h6>{{ $plan->name }} {{ (!empty($admin_payment_setting['currency_symbol']) ? $admin_payment_setting['currency_symbol'] : '$') . $plan->price }} {{ ' / ' . $plan->duration }}</h6> </td> <td>{{ __('Users') }} : {{ $plan->max_users }}</td> <td>{{ __('Employees') }} : {{ $plan->max_employees }}</td> <td class="Action"> <span> @if ($user->plan == $plan->id) <div class="badge bg-success p-2 px-3 rounded"><i class="ti ti-checks"></i> </div> @else <a href="{{ route('plan.active', [$user->id, $plan->id]) }}" class="badge bg-info p-2 px-3 rounded" data-toggle="tooltip" title="{{ __('Click to Upgrade Plan') }}"><i class="ti ti-shopping-cart-plus"></i></a> @endif </span> </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div>