@extends('admin.layouts.home') @section('title', 'Packages') @section('content')

Packages

@forelse($packages as $package) @empty @endforelse
Name Price Duration Status Created At Action
{{ $package->name }} {{ number_format($package->package_price, 2) }} {{ ucfirst($package->duration) }} @if($package->status === 'active') Active @else Inactive @endif {{ $package->created_at->format('Y-m-d H:i:s') }} Edit Delete
No packages found
{{ $packages->links('pagination::bootstrap-5') }}
@endsection