Client Dashboard
Welcome, !
Your Posted Jobs
You have not posted any jobs yet. Post one now!
prepare($sql_jobs); $stmt_jobs->execute([$client_id]); $jobs = $stmt_jobs->fetchAll(); // Fetch applications for the client's jobs $sql_apps = "SELECT ja.*, j.title, w.name AS worker_name, w.email AS worker_email FROM job_applications ja JOIN jobs j ON ja.job_id = j.id JOIN workers w ON ja.worker_id = w.id WHERE j.client_id = ? ORDER BY ja.created_at DESC"; $stmt_apps = db()->prepare($sql_apps); $stmt_apps->execute([$client_id]); $applications = $stmt_apps->fetchAll(); ?>
Welcome, !
You have not posted any jobs yet. Post one now!