@extends('layouts.admin') @section('content')
@php $lang=app()->getLocale(); @endphp
ইন্টারনেট ব্যবহারকারীদের খোঁজ করুন
@if (session('status')) @endif
@csrf

তারিখ নির্বাচন করুন

@csrf

মাসিক বিল লিখুন

সকল ব্যবহারকারীদের তালিকা :- Zero Bill Trash
Search Filters
@php $total_bill_amount=0; @endphp @foreach ($users as $user) @php $total_bill_amount=$total_bill_amount+$user->bill_amount; @endphp @endforeach
# Username Package Comments Monthly Bill Status Connection Date Actions
{{$loop->index+1}} {{$user->name}} {{$user->profile}} {{$user->comments}} {{$user->bill_amount}} @if ($user->disabled=='false') ON @else OFF @endif {{$user->created_at->format('d M, Y')}}   {{$user->created_at->format('h:i:s A')}}
@can('accounts') Change Date @endcan
@php if(isset($_REQUEST['page'])){ $page_id=$_REQUEST['page']; }else{ $page_id=1; } @endphp Details Receive Payment @can('modify-secret')
@endcan
@endcan
Total Bill amount : Tk. {{number_format($total_bill_amount,2)}}
@endsection