@extends('admin.layout.master') @section('title') Manage My Packages @endsection @section('content')

Manage My Packages

@forelse($packages as $t=>$package) @empty @endforelse
Id Title Original Price Price ($) Price (GEL) Data Duration Type Edit Delete
{{ $t+1 }} {{ ($package->title) ? $package->title : '--' }} {{ ($package->original_package_price) ? "$".number_format($package->original_package_price,2) : '--' }} {{ ($package->price) ? "$".number_format($package->price,2) : '--' }} {{ ($package->price) ? number_format(($package->price*$setting->currency_rate))." GEL" : '--' }} {{ ($package->original_package_dataAmount) ? $package->original_package_dataAmount." MB" : '--' }} {{ ($package->original_package_duration) ? $package->original_package_duration." Days" : '--' }} @if($package->type=="1") Locally @endif @if($package->type=="2") Regionally @endif Edit Delete
@endsection @section('script') @endsection