clear command for cmd code example
Example 1: laravel artisan clear cache
php artisan view:clear
php artisan cache:clear
php artisan route:clear
php artisan config:clear
Example 2: clear cmd
just type cls and hit enter
Example 3: clear in windows cmd
cls #this command clears the command window in Windows Command Prompt
Example 4: clear terminal on windows
; -------------------------------------------------------------------------
; Cntr-L should clear screen
; -------------------------------------------------------------------------
#IfWinActive ahk_class ConsoleWindowClass
^L::
Send cls{Enter}
return
#IfWinActive