Here's the "why:" my IDE can't ignore specific folders, so it searches through cached files. I find it speeds things up to blow away all caches before executing a site-wide search, so I'm looking for an efficient way to delete these files. Laravel comments tend to stuff caches all over the place, but particularly in the storage folder. I'm just wondering if Artisan is smart enough to be able to do its own cleanup, of if I'm stuck with the manual option.
@hristodinev - Thanks. cache:clear does blow away the main site cache, but doesn't touch anything else. views:clear does clear away @pmall's precompiled views, but doesn't touch the cache. Just looking for one command to rule them all. Thanks, though.