@extends('layouts.portal.app') @section('content')
@if(Session::has('errorResponse'))
@endif
@if(Auth::user()->hasRole('Administrator') || (Auth::user()->hasRole('Client') && Auth::user()->can('Administer Company'))) @endif
@foreach($companyPaymentAccounts as $companyPaymentAccount)

{{ $companyPaymentAccount->companyRouter? $companyPaymentAccount->companyRouter->name: '' }} {{ $companyPaymentAccount->paymentMethod? $companyPaymentAccount->paymentMethod->name: '' }} @if($companyPaymentAccount->payment_method_id == 1 && $companyPaymentAccount->settle_payments == 1) - Payments setteld to below bank account @endif

@if($companyPaymentAccount->status == 1) active @else inactive @endif
@if($companyPaymentAccount->status == 0) @else @endif
  • API Key
    {{ $companyPaymentAccount->selcom_api_key }}
@endforeach
@include('portal.companies.payment-accounts.create') @include('portal.companies.payment-accounts.edit') @include('portal.companies.payment-accounts.activate') @include('portal.companies.payment-accounts.deactivate') @include('portal.companies.payment-accounts.delete') @include('portal.companies.payment-accounts.register-url') @endsection