8 lines
187 B
PHP
8 lines
187 B
PHP
<?php
|
|
// Fetch the cached dashboard content
|
|
$cachedDashboardContent = Storage::get('cache/dashboard.blade.php');
|
|
|
|
// Display the cached dashboard content
|
|
echo $cachedDashboardContent;
|
|
?>
|