File "user_plans.blade.php"
Full Path: /home/fundopuh/trader.fxex.org/resources/views/admin/Users/user_plans.blade.php
File size: 3.46 KB
MIME-type: text/html
Charset: utf-8
@extends('layouts.app')
@section('content')
<div class="mt-2 mb-4">
<h1 class="title1 d-inline"> {{ $user->name }} Investment Plans</h1>
<div class="d-inline">
<div class="float-right btn-group">
<a class="btn btn-primary btn-sm" href="{{ route('viewuser', $user->id) }}"> <i class="fa fa-arrow-left"></i>
back</a>
</div>
</div>
</div>
<x-admin.alert />
<div class="mb-5 row">
<div class="col card p-3 shadow ">
<div class="bs-example widget-shadow table-responsive" data-example-id="hoverable-table">
<span style="margin:3px;">
<table id="ShipTable" class="table table-hover ">
<thead>
<tr>
{{-- <th>Client name</th> --}}
<th>Plan</th>
<th>Amount</th>
<th>Active</th>
<th>Duration</th>
<th>Created on</th>
<th>Expire At</th>
<th>Option</th>
</tr>
</thead>
<tbody>
@foreach ($plans as $plan)
<tr>
{{-- <td>{{$plan->duser->name}}</td> --}}
<td>{{ $plan->dplan->name }}</td>
<td>{{ $settings->currency }}{{ number_format($plan->amount) }}</td>
<td>
@if ($plan->active == 'yes')
<span class="badge badge-success">{{ $plan->active }}</span>
@else
<span class="badge badge-danger">{{ $plan->active }}</span>
@endif
</td>
<td>{{ $plan->inv_duration }}</td>
<td>{{ \Carbon\Carbon::parse($plan->created_at)->toDayDateTimeString() }}
</td>
<td>{{ \Carbon\Carbon::parse($plan->expire_date)->toDayDateTimeString() }}
</td>
<td>
<a href="{{ route('deleteplan', $plan->id) }}" class="m-1 btn btn-info btn-sm">
Delete Plan</a>
@if ($plan->active == 'yes')
<a href="{{ route('markas', ['id' => $plan->id, 'status' => 'expired']) }}"
class="m-1 btn btn-danger btn-sm">Mark as expired</a>
@else
<a href="{{ route('markas', ['id' => $plan->id, 'status' => 'yes']) }}"
class="m-1 btn btn-success btn-sm">Mark as active</a>
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection