@extends('admin.layout.base') @section('title', 'Users ') @section('content')
@if(Setting::get('demo_mode') == 1)
** Demo Mode : @lang('admin.demomode')
@endif
@lang('admin.corusers.Users') @if(Setting::get('demo_mode', 0) == 1) (*personal information hidden in demo) @endif
Add New Corporate Company @php($page = ($pagination->currentPage-1)*$pagination->perPage) @foreach($corusers as $index => $cuser) @php($page++) @if(Setting::get('demo_mode', 0) == 1) @else @endif @if(Setting::get('demo_mode', 0) == 1) @else @endif @endforeach
@lang('admin.id') @lang('admin.company_name') @lang('admin.address') @lang('admin.email') @lang('admin.mobile') @lang('Pay Amount') @lang('admin.action')
{{ $page }} {{ $cuser->company_name }} {{ $cuser->address }}{{ substr($cuser->email, 0, 3).'****'.substr($cuser->email, strpos($cuser->email, "@")) }}{{ $cuser->email }}+919876543210{{ $cuser->mobile }}{{currency($cuser->payamount) }}
{{ csrf_field() }} @if( Setting::get('demo_mode') == 0) @if($cuser->payamount >0) Pay Now @endif View Users @lang('admin.edit') @endif
@lang('admin.id') @lang('admin.company_name') @lang('admin.address') @lang('admin.email') @lang('admin.mobile') @lang('Pay Amount') @lang('admin.action')
@include('common.pagination')
@endsection @section('scripts') @endsection