Bundles Data Table

@foreach ($bundles as $bundle) @endforeach
# Title Price Price Before Status Actions
{{ $loop->iteration }} {{ $bundle->title }} ${{ number_format($bundle->price, 2) }} {{ $bundle->price_before ? '$' . number_format($bundle->price_before, 2) : '-' }} @if ($bundle->is_active) Active @else Inactive @endif
@csrf
{{ $bundles->links() }}