#!/bin/bash

echo "======================================"
echo " Clearing Permission Cache"
echo "======================================"
echo ""

echo "[1/4] Clearing application cache..."
php artisan cache:clear

echo "[2/4] Clearing config cache..."
php artisan config:clear

echo "[3/4] Clearing route cache..."
php artisan route:clear

echo "[4/4] Clearing permission cache..."
php artisan permission:cache-reset

echo ""
echo "======================================"
echo " All caches cleared successfully!"
echo "======================================"
echo ""
echo "IMPORTANT: Users must LOG OUT and LOG IN again"
echo "to see updated permissions!"
echo ""
echo "To test permissions for a user, run:"
echo "  php artisan permission:test {user_id}"
echo ""
echo "To test all users, run:"
echo "  php artisan permission:test"
echo ""
