@extends('admin.layout') @section('custom-style') @endsection @section('content')

Payment Methods

@if ($errors->any())
@foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif @if(\Session::has('error'))
  • {!! \Session::get('error') !!}
  • @endif @if(\Session::has('warning'))
  • {!! \Session::get('warning') !!}
  • @endif @if(\Session::has('success'))
  • {!! \Session::get('success') !!}
  • @endif
    Set up your payment methods to facilitate receiving your revenue payout and withdrawal of your funds with ease

    Preferred Payment Method

    @php function capitalizeFirstLetters($string) { return ucwords($string, "-("); } $payment_method_input = "mobile-money(mpesa)"; $payment_method_output = capitalizeFirstLetters($payment_method_input); @endphp @if(optional($client_payment_methods)->preferred) @else @endif
    @endsection