D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
3023067
/
root
/
home
/
dateitor
/
www
/
vendor
/
stancl
/
tenancy
/
src
/
Features
/
Filename :
TelescopeTags.php
back
Copy
<?php declare(strict_types=1); namespace Stancl\Tenancy\Features; use Laravel\Telescope\IncomingEntry; use Laravel\Telescope\Telescope; use Stancl\Tenancy\Contracts\Feature; use Stancl\Tenancy\Tenancy; class TelescopeTags implements Feature { public function bootstrap(Tenancy $tenancy): void { if (! class_exists(Telescope::class)) { return; } Telescope::tag(function (IncomingEntry $entry) { $tags = []; if (! request()->route()) { return $tags; } if (tenancy()->initialized) { $tags = [ 'tenant:' . tenant('id'), ]; } return $tags; }); } }