Skip to content

Collect other eloquent model events #1781

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
May 8, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove eloquent.restored event
  • Loading branch information
erikn69 authored Apr 15, 2025
commit e6590f0b1fb4f63c3cd806f9b59a609c3a60f603
2 changes: 1 addition & 1 deletion src/LaravelDebugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ function (\Illuminate\Database\Events\ConnectionEstablished $event) {
if ($this->shouldCollect('models', true) && $events) {
try {
$this->addCollector(new ObjectCountCollector('models'));
$eventList = ['retrieved', 'created', 'updated', 'deleted', 'restored'];
$eventList = ['retrieved', 'created', 'updated', 'deleted'];
$this['models']->setKeyMap(array_combine($eventList, array_map('ucfirst', $eventList)));
$this['models']->collectCountSummary(true);
foreach ($eventList as $event) {
Expand Down
Loading