S.No. |
Name |
Description |
Price |
Duration |
Status |
Action |
Action |
@foreach($plans as $row)
{{ $loop->iteration }} |
{{ $row->name }} |
{{ $row->description }} |
{{ $row->price }} |
{{ $row->duration_days }} |
@if($row->status == 'active')
Active
@else
Inactive
@endif
|
Edit |
Delete |
@endforeach
@include('admin.footer')
@section('scripts')
@vite('resources/assets/js/table-data.js')
@endsection