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