@extends('layouts.backend.app') @section('title', 'Payment Method') @push('css') @endpush @section('content')

Payment Method

@foreach($paymentMethods as $finance)
id ? 'checked' : '' }} id="paymentMethod{{$finance->id}}" onchange="return selectMethod({{$finance->id}})" value="{{$finance->id}}">
@endforeach

Payment Details

@csrf @foreach ($fileds as $filed)
@php $paymentMethod = \App\Models\PaymentMethod::where('finance_filed_id', $filed->id) ->where('user_id', auth()->user()->id) ->first(); @endphp
@endforeach
@endsection @push('js') @endpush