Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active April 20, 2024 00:29
Show Gist options
  • Save fayqLs/480fe94b77b29093f8253fd2b2bea3c9 to your computer and use it in GitHub Desktop.
Save fayqLs/480fe94b77b29093f8253fd2b2bea3c9 to your computer and use it in GitHub Desktop.
CONTAR O NÚMERO DE REGISTROS DE UMA TABELA
<?php
# COM FILTRO
$qtd_produtos = Produto::where('grupo', '=', 'BEBIDAS')->count();
# SEM FILTRO, TODOS OS REGISTROS
$qtd_produtos = Produto::count();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment