@extends('layouts.headatmin')
@section('title', 'Manajemen Paket')
@section('content')
@if(session('success'))
@endif
| No |
Nama |
Harga |
Benefit |
Aksi |
@foreach ($pakets as $index => $paket)
| {{ $index + 1 }} |
{{ $paket->nama }} |
Rp{{ number_format($paket->harga, 0, ',', '.') }} |
{{ $paket->benefit }} |
|
@endforeach
@endsection