PHP code example of clcbws / laravel-eloquent-insight
1. Go to this page and download the library: Download clcbws/laravel-eloquent-insight library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
clcbws / laravel-eloquent-insight example snippets
use EloquentInsight\Facades\Insight;
public function checkEfficiency()
{
$solutions = Insight::getLatestSolutions();
$efficiency = Insight::getEfficiencyReport();
return response()->json([
'score' => Insight::getPerformanceScore(),
'bottlenecks' => $solutions,
'ghost_relations' => $efficiency['ghost_relations'],
'duplicates' => Insight::getDuplicateReport(),
]);
}
namespace App\Livewire;
use Livewire\Component;
use EloquentInsight\Facades\Insight;
class PerformanceMonitor extends Component
{
public function render()
{
return view('livewire.performance-monitor', [
'solutions' => Insight::getLatestSolutions(),
'score' => Insight::getPerformanceScore(),
'efficiency' => Insight::getEfficiencyReport(),
]);
}
}