14 lines
417 B
PHP
14 lines
417 B
PHP
<?php
|
|
// Helper untuk clear Blade view cache di hosting
|
|
// HAPUS FILE INI setelah digunakan!
|
|
$viewCachePath = __DIR__ . '/../storage/framework/views/';
|
|
$files = glob($viewCachePath . '*.php');
|
|
$count = 0;
|
|
foreach ($files as $file) {
|
|
if (is_file($file)) {
|
|
unlink($file);
|
|
$count++;
|
|
}
|
|
}
|
|
echo "✓ Berhasil menghapus {$count} file view cache. Silakan hapus file clear-cache.php ini dari server.";
|