@extends('layouts.index') @section('content')

{{ $title }}

@include('includes.message')
@foreach($table_columns as $column) @if($column !== 'id') @endif @endforeach @foreach($data as $key => $about) @foreach($table_columns as $column) @if($column !== 'id' && $column !== 'status') @endif @endforeach @endforeach
Sr. No. @if($column == 'razorpay_payment_id') Payment ID @else {{ ucfirst(str_replace('_', ' ', $column)) }} @endif Actions
{{ $key + 1 }}{{ $about->$column }}
@endsection