Is there any ways available to encrypt the source code of Laravel? I do not want my client to see my source code. I want to encrypt all my PHP files and codes. Any idea?
I am using xampp and windows along with laravel, everything was working fine, but when I finished work and turned of xampp and try to open my work today morning, this is what I get:
FatalThrowableError in Encrypter.php line 100:
…
Recently i made new project with composer and added very basic authentication with make:auth - nothing fancy.
Next i wanted to encrypt name and email columns on my database so i changed their types from VARCHAR(191) to LONGTEXT and …
Given the following code:
DB::table('users')->get();
I want to get the raw SQL query string that the database query builder above will generate. In this example, it would be SELECT * FROM users.
How do I do …