Laravel
Articles categorized in: Laravel
We are using the Pay.nl SDK to work with pay.nl. We load the Pay.nl token and service id keys with the function: public function __construct() { Config::setApiToken(env(‘PAY_TOKEN’)); Config::setServiceId(env(‘SERVICE_ID’)); } in
Laradock needs to be set up to work with Supervisor. Here is how to Run Horizon by Supervisord in Laradock . Supervisord Configuration To Run Horizon by supervisord in
Somtimes tinkering with Laradock containers you may get a SQLSTATE[HY000] [2002] Connection timed out or to be more specifically Illuminate\Database\QueryExceptionPOST /login SQLSTATE[HY000] [2002] Connection timed out (SQL: select * from
Removing Failed Jobs in Laravel Horizon, how is that done really? First you will notice you can restart jobs, but you cannot remove them. And if you had quite a
Laravel Forge Server Files Sync using rsync is the way to go to quickly synchronize files between servers. Just do a simple ssh -o ForwardAgent=yes forge@origin.com “rsync -aze ‘ssh -o
To install Browser Sync in Laravel run npm i -D browser-sync Webpack Tweak in webpack.mix.js add mix.browserSync(‘laravel.test’); or one with the url you are using to the bottom of the file
There are many git commands you need to run your Laravel projects well. Here are Laravel Git Tricks that I am sure you cannot live without List all branches of
You sometimes get a jQuery Ajax Error 500. The Homestead /var/logs/error.log will show you nothing and in your laravel.log nothing shows either. Fortunately in your console you did get an
Laravel Logs are normally decided in config/app.php and your .env file. Let’s go through all the configuration options here and how you can set up logging locally properly as well
To set up Laravel Forge on Custom VPS you need to follow the custom VPS route. First you need to make the VPS Server ready with the operating system of
Most of us will wind up wanting a Laravel Deployer Multiple Hosts setup. You start out development on one test or staging server, but you often need another production server