@extends('layouts.portal.app') @section('content')
@if(Session::has('errorResponse'))
@endif
@foreach($activePaymentModes as $paymentMode) @endforeach
# Name Status Actions
{{ $loop->iteration }} {{ $paymentMode->name }} @if($paymentMode->status == 1) active @else inactive @endif @if($paymentMode->status == 0) @else @endif
{{ $activePaymentModes->render() }}
@include('portal.payment-modes.create') @include('portal.payment-modes.edit') @include('portal.payment-modes.activate') @include('portal.payment-modes.deactivate') @endsection