Skip to content

Instantly share code, notes, and snippets.

@derhansen
Last active July 15, 2021 17:16
Show Gist options
  • Save derhansen/c9d6edd589d337130afd to your computer and use it in GitHub Desktop.
Save derhansen/c9d6edd589d337130afd to your computer and use it in GitHub Desktop.
Laravel 5 - get amount of jobs in a queue (database driver)
$numJobs = DB::table('jobs')->where('queue', 'myqueue')->count();
@ctf0
Copy link

ctf0 commented May 9, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment