Getting non static function statically is called Facades. Lets set the cache like below in our web route cache()->set(‘name’,”navid”); and get it using dd() dd(cache()->get(‘name’)); Result : “navid” As we can see cache() is not a static method. If we Ctrl+Left Mouse Click on cache(),it will go to that method and we can see the […]