@if ($showViewRequestModal && $selectViewRequest)
                    
                    
                        @lang('modules.billing.restaurant')
                        {{ $selectViewRequest->restaurant->name }}
                    
                    
                    
                        @lang('modules.billing.package')
                        {{ $selectViewRequest->package->package_type }}
                    
                    
                    @if ($selectViewRequest->amount)
                    
                        @lang('modules.billing.amount')
                        {{ $selectViewRequest->amount }}
                    
                    @endif
                    @if ($selectViewRequest->restaurant->ownerName)
                    
                    
                        @lang('modules.billing.paymentBy')
                        {{ $selectViewRequest->restaurant->ownerName }}
                    
                    @endif
                    
                    
                        @lang('app.status')
                        
                            @if ($selectViewRequest->status == 'verified')
                                
                                    @lang('app.verified')
                                
                            @elseif ($selectViewRequest->status == 'pending')
                                
                                    @lang('app.pending')
                                
                            @else
                                
                                    @lang('app.rejected')
                                
                            @endif
                        
                    
                    
                    
                        @lang('modules.billing.description')
                        {{ $selectViewRequest->description }}
                    
                    @if ($selectViewRequest->status == 'rejected')
                        
                        
                            @lang('modules.billing.remark')
                            {{ $selectViewRequest->remark }}
                        
                    @endif
                    
                    
                        @lang('modules.billing.created')
                        {{ $selectViewRequest->created_at->format('D, d M Y') }}
                    
                    
                    
                @endif