@extends("admin.admin_app") @section("content")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($list as $i => $data) @endforeach
{{trans('words.gateway_name')}} {{trans('words.status')}} {{trans('words.action')}}
{{ stripslashes($data->gateway_name) }} @if($data->status==1){{trans('words.active')}} @else{{trans('words.inactive')}}@endif
@include("admin.copyright")
@endsection