|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/resources/views/user/ |
Upload File : |
<div class="modal-body">
<div class="card">
<div class="card-body table-border-style">
<div class="table-responsive">
<table class="table datatable">
@foreach($plans as $plan)
<tr>
<td><h6>{{$plan->name}} ({{isset($admin_payment_setting['currency']) ? $admin_payment_setting['currency'] : '$'}}{{$plan->price}}) {{' / '. $plan->duration}}</h6></td>
<td>{{__('Users')}} : {{$plan->max_users}}</td>
<td>{{__('Customers')}} : {{$plan->max_customers}}</td>
<td>{{__('Vendors')}} : {{$plan->max_venders}}</td>
<td>
@if($user->plan==$plan->id)
<span class="btn btn-sm btn-primary my-auto"><i class="ti ti-check "></i></span>
@else
<a href="{{route('plan.active',[$user->id,$plan->id])}}" class="btn btn-sm btn-warning my-auto" title="{{__('Click to Upgrade Plan')}}"><i class="ti ti-shopping-cart-plus"></i></a>
@endif
</td>
</tr>
@endforeach
</table>
</div>
</div>
</div>
</div>