D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Traits
/
Helpers
/
Filename :
DebugHelpers.php
back
Copy
<?php namespace Rappasoft\LaravelLivewireTables\Traits\Helpers; trait DebugHelpers { public function getDebugStatus(): bool { return $this->debugStatus; } public function debugIsEnabled(): bool { return $this->getDebugStatus() === true; } public function debugIsDisabled(): bool { return $this->getDebugStatus() === false; } }