@pouyabh Have you installed the Laravel debugbar (or a similar tool) to find out how many queries you run, how long they take, how many models you use and how much memory they allocate?
“How do I make my site faster?”
“Install a package and add more code to it.”
You can’t install a package to make a site magically faster. Sites are slow because of the code it runs. If it’s slow, then your code is inefficient. So look at why your code is actually slow and rectify that instead of thinking installing a package will magically solve your problems.
There’s no point say, compressing responses if the problem is say, database query-related. Compressing responses is going to do nothing for you in that situation.