@extends('layouts.admin') @section('page-title', 'All Packages') @section('content')

All Packages

You have total {{ $packages->count() }} Packages

Add Package

Packages

@forelse($packages as $index => $package) @empty @endforelse
# Name Price Duration Product Upload Limit Status Options
{{ $index + 1 }}
@if($package->image) {{ $package->name }} @else
@endif {{ $package->name }}
{{ $package->price == 0 ? 'Free' : '$' . number_format($package->price, 2) }} {{ $package->duration_days }} Days {{ $package->product_limit == 0 ? 'Unlimited' : $package->product_limit }}
No packages found
@endsection