File: //var/www/html/punjabcabs/app/Http/Controllers/AccountController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Helpers\Helper;
use Auth;
use Setting;
use Exception;
use \Carbon\Carbon;
use App\User;
use App\Fleet;
use App\Account;
use App\Provider;
use App\UserPayment;
use App\ServiceType;
use App\UserRequests;
use App\ProviderService;
use App\UserRequestRating;
use App\UserRequestPayment;
class AccountController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('account');
}
/**
* Dashboard.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function dashboard()
{
try{
return view('account.dashboard');
}
catch(Exception $e){
return redirect()->route('account.user.index')->with('flash_error','Something Went Wrong with Dashboard!');
}
}
public function content(Request $request)
{
try{
$fromdate = Carbon::today();
$todate = Carbon::now();
if($request->fromdate !=''){
$fromdate = Helper::date_formatter($request->fromdate);
}
if($request->todate !=''){
$todate = Helper::date_formatter($request->todate);
}
$rides = UserRequests::has('user')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->orderBy('id','desc')
->get();
$completed_rides = UserRequests::where('status','COMPLETED')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->count();
$cancel_rides = UserRequests::where('status','CANCELLED')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->get();
$scheduled_rides = UserRequests::where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('status','SCHEDULED')
->count();
$dispatcher_rides = UserRequests::where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('booking_by','DISPATCHER')
->count();
$street_rides = UserRequests::where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('booking_by','STREET')
->count();
$user_cancelled = UserRequests::where('status','CANCELLED')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('cancelled_by','USER')
->count();
$provider_cancelled = UserRequests::where('status','CANCELLED')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('cancelled_by','PROVIDER')
->count();
$dispatcher_cancelled = UserRequests::where('status','CANCELLED')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('cancelled_by','DISPATCHER')
->count();
$service = ServiceType::count();
$fleet = Fleet::count();
$revenue = UserRequestPayment::where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->sum('total');
$commision = UserRequestPayment::where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->sum('commision');
$providers = Provider::take(10)->orderBy('rating','desc')->get();
return view('account.dashboard-content',compact('providers','fleet','scheduled_rides','service','rides','completed_rides','user_cancelled','provider_cancelled','dispatcher_cancelled','cancel_rides','revenue','commision','dispatcher_rides','street_rides'));
}
catch(Exception $e){
return redirect()->route('account.dashboard.index')->with('flash_error','Something Went Wrong with Dashboard!');
}
}
/**
* Remove the specified resource from storage.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function profile()
{
return view('account.account.profile');
}
/**
* Remove the specified resource from storage.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function profile_update(Request $request)
{
$this->validate($request,[
'name' => 'required|max:255',
'mobile' => 'required|digits_between:6,13',
]);
try{
$account = Auth::guard('account')->user();
$account->name = $request->name;
$account->mobile = $request->mobile;
$account->save();
return redirect()->back()->with('flash_success','Profile Updated');
}
catch (Exception $e) {
return back()->with('flash_error','Something Went Wrong!');
}
}
/**
* Remove the specified resource from storage.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function password()
{
return view('account.account.change-password');
}
/**
* Remove the specified resource from storage.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function password_update(Request $request)
{
$this->validate($request,[
'old_password' => 'required',
'password' => 'required|min:6|confirmed',
]);
try {
$Account = Account::find(Auth::guard('account')->user()->id);
if(password_verify($request->old_password, $Account->password))
{
$Account->password = bcrypt($request->password);
$Account->save();
return redirect()->back()->with('flash_success','Password Updated');
}
} catch (Exception $e) {
return back()->with('flash_error','Something Went Wrong!');
}
}
/**
* account statements.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function statement($type = 'individual'){
try{
$page = 'Ride Statement';
if($type == 'individual'){
$page = 'Provider Ride Statement';
}elseif($type == 'today'){
$page = 'Today Statement - '. date('d M Y');
}elseif($type == 'monthly'){
$page = 'This Month Statement - '. date('F');
}elseif($type == 'yearly'){
$page = 'This Year Statement - '. date('Y');
}
$type_data = $type;
return view('account.providers.statement', compact('page','type_data'));
} catch (Exception $e) {
return back()->with('flash_error','Something Went Wrong!');
}
}
public function statement_content(Request $request){
$columns = array(
0 =>'id',
1 =>'booking_id',
2=> 's_address',
3=> 'd_address',
4=> 'detail',
5=> 'created_at',
6=> 'status',
7=> 'payment_mode',
8=> 'total',
9=> 'commission',
10=> 'earned',
);
$fromdate = '';
$todate = Carbon::now();
$payment_type ='';
$tripstatus ='';
if($request->type_data !=''){
$type = $request->type_data;
if($type == 'today'){ $fromdate = Carbon::today(); }
if($type == 'monthly'){ $fromdate = Carbon::now()->startOfMonth(); }
if($type == 'yearly'){ $fromdate = Carbon::now()->year; }
}
if($request->fromdate !=''){
$fromdate = Helper::date_formatter($request->fromdate);
}
if($request->todate !=''){
$todate = Helper::date_formatter($request->todate);
}
if($request->has('payment')){
$payment_type = $request->payment;
}
if($request->has('tripstatus')){
$tripstatus = $request->tripstatus;
}
$main_detail = UserRequests::with('payment')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('status', 'LIKE', '%'.$tripstatus.'%')
->where('payment_mode','LIKE', '%'.$payment_type.'%');
$cancel_rides = UserRequests::where('status','CANCELLED')
->where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->where('status', 'LIKE', '%'.$tripstatus.'%')
->where('payment_mode','LIKE', '%'.$payment_type.'%');
$revenue = UserRequestPayment::where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->sum('total');
$commision = UserRequestPayment::where('created_at', '>=', $fromdate)
->where('created_at', '<', $todate)
->sum('commision');
$total_cancel = $cancel_rides->count();
$total_revenue = currency($revenue);
$total_commission = currency($commision);
$totalData = $main_detail->count();
$totalFiltered = $totalData;
$limit = $request->input('length');
$start = $request->input('start');
$order = $columns[$request->input('order.0.column')];
$dir = $request->input('order.0.dir');
if(empty($request->input('search.value')))
{
$rides = $main_detail
->offset($start)
->limit($limit)
->orderBy('id','desc')
->get();
}
else {
$search = $request->input('search.value');
$rides = $main_detail
->where('booking_id','LIKE',"%{$search}%")
->orWhere('s_address', 'LIKE',"%{$search}%")
->orWhere('d_address', 'LIKE',"%{$search}%")
->orWhere('created_at', 'LIKE',"%{$search}%")
->offset($start)
->limit($limit)
->orderBy('id','desc')
->get();
$totalFiltered = $main_detail
->where('booking_id','LIKE',"%{$search}%")
->orWhere('s_address', 'LIKE',"%{$search}%")
->orWhere('d_address', 'LIKE',"%{$search}%")
->orWhere('created_at', 'LIKE',"%{$search}%")
->count();
}
$data = array();
if(!empty($rides))
{
foreach ($rides as $index => $ride)
{
$view = route('account.requests.show',$ride->id);
if($ride->s_address != ''){ $s_address = $ride->s_address;}else{$s_address = "Not Provided";}
if($ride->d_address != ''){ $d_address = $ride->d_address;}else{$d_address = "Not Provided";}
if($ride->status != 'CANCELLED'){ $detail = '<a class="text-primary" href="'.$view.'"><div class="label label-table label-info">'.trans("admin.member.view").'</div></a>'; }else{$detail= '<span>'.trans("admin.member.no_details_found").'</span>'; }
if($ride->status == "COMPLETED"){$status = '<span class="label label-table label-success">'.$ride->status.'</span>';}
elseif($ride->status == "CANCELLED"){$status = '<span class="label label-table label-danger">'.$ride->status.'</span>';}
else{$status = '<span class="label label-table label-primary">'.$ride->status.'</span>';}
$nestedData['id'] = $start + 1;
$nestedData['booking_id'] = $ride->booking_id;
$nestedData['s_address'] = $s_address;
$nestedData['d_address'] = $d_address;
$nestedData['detail'] = $detail;
$nestedData['created_at'] = date('d-m-Y',strtotime($ride->created_at));
$nestedData['status'] = $status;
$nestedData['payment_mode'] = $ride->payment_mode;
$nestedData['total'] = currency($ride->payment['total']);
$nestedData['commission'] = currency($ride->payment['commision']);
$nestedData['earned'] = currency($ride->payment['total'] - $ride->payment['commision']);
$data[] = $nestedData;
$start++;
}
}
$percentage = 0.00;
if($total_cancel != 0){
$percentage = round($total_cancel / $totalFiltered, 2);
}
$json_data = array(
"draw" => intval($request->input('draw')),
"recordsTotal" => intval($totalData),
"recordsFiltered" => intval($totalFiltered),
"data" => $data,
"cancel_rides" => $total_cancel,
"revenue" => $total_revenue,
"commission" => $total_commission,
"percentage" => $percentage
);
echo json_encode($json_data);
}
/**
* account statements today.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function statement_today(){
return $this->statement('today');
}
/**
* account statements monthly.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function statement_monthly(){
return $this->statement('monthly');
}
/**
* account statements monthly.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function statement_yearly(){
return $this->statement('yearly');
}
/**
* account statements.
*
* @param \App\Provider $provider
* @return \Illuminate\Http\Response
*/
public function statement_provider(){
try{
$Providers = Provider::all();
return view('account.providers.provider-statement', compact('Providers'))->with('page',trans("admin.driver_statement"));
} catch (Exception $e) {
return back()->with('flash_error','Something Went Wrong!');
}
}
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function statement_providerlist(Request $request){
$columns = array(
0 =>'id',
1 =>'provider_name',
2=> 'mobile',
3=> 'status',
4=> 'total_rides',
5=> 'total',
6=> 'commission',
7=> 'earnings',
8=> 'joined_at',
9=> 'details',
);
$Providerslist = Provider::all();
foreach($Providerslist as $index => $Provider){
$Rides = UserRequests::where('provider_id',$Provider->id)
->orderBy('id','desc')
->get()->pluck('id');
$Providerslist[$index]->rides_count = $Rides->count();
$Providerslist[$index]->payment = UserRequestPayment::whereIn('request_id', $Rides)
->select(\DB::raw(
'SUM(total) as overall, SUM(commision) as commission, SUM(total - commision) as earning' ))->get();
}
$totalData = $Providerslist->count();
$totalFiltered = $totalData;
$limit = $request->input('length');
$start = $request->input('start');
$order = $columns[$request->input('order.0.column')];
$dir = $request->input('order.0.dir');
if(empty($request->input('search.value')))
{
$Providers = Provider::offset($start)
->limit($limit)
->orderBy('id','desc')
->get();
foreach($Providers as $index => $Provider){
$Rides = UserRequests::where('provider_id',$Provider->id)
->orderBy('id','desc')
->get()->pluck('id');
$Providers[$index]->rides_count = $Rides->count();
$Providers[$index]->payment = UserRequestPayment::whereIn('request_id', $Rides)
->select(\DB::raw(
'SUM(total) as overall, SUM(commision) as commission, SUM(total - commision) as earning' ))->get();
}
}
else {
$search = $request->input('search.value');
$Providers = Provider::where('first_name','LIKE',"%{$search}%")
->orWhere('last_name','LIKE',"%{$search}%")
->orWhere('mobile','LIKE',"%{$search}%")
->orWhere('status','LIKE',"%{$search}%")
->offset($start)
->limit($limit)
->orderBy('id','desc')
->get();
foreach($Providers as $index => $Provider){
$Rides = UserRequests::where('provider_id',$Provider->id)
->orderBy('id','desc')
->get()->pluck('id');
$Providers[$index]->rides_count = $Rides->count();
$Providers[$index]->payment = UserRequestPayment::whereIn('request_id', $Rides)
->select(\DB::raw(
'SUM(total) as overall, SUM(commision) as commission, SUM(total - commision) as earning' ))->get();
}
$totalFiltered = Provider::where('first_name','LIKE',"%{$search}%")
->orWhere('last_name','LIKE',"%{$search}%")
->orWhere('mobile','LIKE',"%{$search}%")
->orWhere('status','LIKE',"%{$search}%")
->count();
}
$data = array();
if(!empty($Providers))
{
foreach ($Providers as $index => $provider)
{
if($provider->first_name != ''){ $first_name = $provider->first_name;}else{$first_name = "-";}
if($provider->last_name != ''){ $last_name = $provider->last_name;}else{$last_name = "-";}
if($provider->status == "approved"){
$status = '<span class="label label-table label-success">'.$provider->status.'</span>';
}elseif($provider->status == "banned"){
$status = '<span class="label label-table label-danger">'.$provider->status.'</span>';
}else{
$status = '<span class="label label-table label-primary">'.$provider->status.'</span>';
}
if($provider->rides_count){
$rides = $provider->rides_count;
}else{
$rides = '-';
}
if($provider->payment){
$total = currency($provider->payment[0]->overall);
}else{
$total = '-';
}
if($provider->payment){
$commission = currency($provider->payment[0]->commission);
}else{
$commission = '-';
}
if($provider->payment){
$earnings = currency($provider->payment[0]->earning);
}else{
$earnings = '-';
}
if($provider->created_at){
$joined_at = datetime_formatter($provider->created_at);
}else{
$joined_at = '-';
}
$details = '<a href="'.route('account.provider.statement', $provider->id).'"><div class="label label-table label-info">'.trans("admin.member.view").'</div></a>';
$provider_name = $first_name.' '.$last_name;
$nestedData['id'] = $start + 1;
$nestedData['provider_name'] = $provider_name;
$nestedData['mobile'] = $provider->mobile;
$nestedData['status'] = $status;
$nestedData['total_rides'] = $rides;
$nestedData['total'] = $total;
$nestedData['commission'] = $commission;
$nestedData['earnings'] = $earnings;
$nestedData['joined_at'] = $joined_at;
$nestedData['details'] = $details;
$data[] = $nestedData;
$start++;
}
}
$json_data = array(
"draw" => intval($request->input('draw')),
"recordsTotal" => intval($totalData),
"recordsFiltered" => intval($totalFiltered),
"data" => $data
);
echo json_encode($json_data);
}
}