@extends('back.layouts.app', ['title' => $title]) @section('content')
@include('back.common_views.quicklinks')
@if (Session::has('msg'))

{!! Session::get('msg') !!}

@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @php $Bstatus = ''; $BGcolor = ''; @endphp @if (count($result) > 0) @foreach ($result as $row) @php $bgColor = isset($bgColor) && $bgColor == '#f9f9f9' ? '#FFFFFF' : '#f9f9f9'; @endphp @endforeach @else @endif
ID Title Detais Status Action
{{ $row->id }} {{ $row->title }} @if ($row->id == 5 && $row->sts == 'Yes')
@if (get_meta_val('authorize_test') == 'Yes') (Test Mode) @else (Live) @endif @endif
@php $webKey = Str::random(10); $authLink = base_url() . 'invoice/pay/' . $webKey; $authLinkPaypal = base_url() . 'invoice/' . $webKey; $paymentDetails = str_replace('{AUTHORIZE_PAYNOW_BUTTON}', $authLink, $row->details); $paymentDetails = str_replace('{PAYPAL_PAYNOW_BUTTON}', $authLinkPaypal, $paymentDetails); @endphp {!! $paymentDetails !!} @if ($row->sts == 'Yes') Active @else Blocked @endif
@if ($row->id == 2) Paypal Email @endif @if ($row->id == 5) Account Credentials @endif @if ($row->id > 5) Delete @endif
No Record found!
{{ $result->links() }}
@endsection @section('beforeBodyClose') @endsection