This is a very simple and correct way to do this. Just add the bellow code in the .htaccess file of the root directory of laravel project.
 
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteRule ^(.*)$ public/$1 [L]
</IfModule>