Current File : //home/tradevaly/public_html/resources/views/user/pages/changeplan.blade.php |
@extends('user.ayaan.master')
@push('style')
@endpush
@section('content')
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header card-header-info card-header-icon">
<h4 class="card-title">My Subscription</h4>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Title</th>
<th>Badge</th>
<th>Price</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach($packages as $package)
@if($package->id != 1)
<tr>
<td>{{$package->name}}</td>
<td> <img src="{{asset('storage/images/admin/package/'.$package['image'])}}" width="138" height="44" alt="{{ $package['details'] }}" class="lazy" style=""></td>
<td>{{$package->price}}</td>
<td> <a href="{{ route('user.choose', $package->id) }}">
<span class="btn btn-info">Choose</span>
</a></td>
</tr>
@endif
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
@stop
@push('script')
@endpush