for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Insense\LaravelTelescopePruning\Models;
use Illuminate\Database\Eloquent\Model;
class EntryTagModel extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'telescope_entries_tags';
* Indicates if the model should be timestamped.
* @var bool
public $timestamps = false;
* The primary key for the model.
protected $primaryKey = null;
* Indicates if the IDs are auto-incrementing.
public $incrementing = false;
* Get the current connection name for the model.
* @return string
public function getConnectionName()
return config('telescope.storage.database.connection');
}