Files
aibuddytool/app/View/Composers/StatsComposer.php
2023-11-28 05:20:10 +08:00

23 lines
460 B
PHP

<?php
namespace App\View\Composers;
use App\Models\AiTool;
use Illuminate\View\View;
use Illuminate\Support\Facades\Cache;
class StatsComposer
{
public function compose(View $view)
{
// Retrieve the count from the cache or count and store it if not present
$tools_count = Cache::remember('tools_count', 10800, function () {
return AiTool::count();
});
$view->with('tools_count', $tools_count);
}
}