@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Payment Gateway']) @endsection @section('content')
@foreach($posts as $row) @endforeach
{{ __('Name') }} {{ __('Status') }} {{ __('Total Users') }} {{ __('Last Updated at') }} {{ __('Edit') }}
{{ $row->name }} @if($row->featured==1) {{ __('Active') }} @else {{ __('Deactive') }} @endif {{ $row->gateway_users_count }} {{ $row->updated_at->diffForHumans() }}
@endsection