Я не хочу, чтобы телескоп захватывал некоторые запросы, сделанные в некоторых таблицах.
Через Telescope :: filter в TelescopeServiceProvider я могу фильтровать по $ entry-> type === 'query'.
Как я могу отфильтровать таблицы?
Как узнать, из какой таблицы этот запрос?
Мой TelescopeServiceProvider. php
public function register()
{
// Telescope::night();
$this->hideSensitiveRequestDetails();
Telescope::filter(function (IncomingEntry $entry) {
if($entry->type==='query'){
//How do I know which table this query is from?
}
if ($this->app->environment('local')) {
return true;
}
return $entry->isReportableException() ||
$entry->isFailedRequest() ||
$entry->isFailedJob() ||
$entry->isScheduledTask() ||
$entry->hasMonitoredTag();
});
}