Category: development
-
Laravel with InertiaJS
I’m not sure when this whole backend vs frontend battle started in my head. But I’m mainly a backend developer. Ever since I started development, I mainly focused on data structure and coding. I rarely paid attention to any of the frontend elements. My main focus were to ensure that my code worked as expected.…
-
User Roles Many to Many
Another way to design user roles in your application is to create a many to many relationship. This means many users can have many roles.
-
Vagrant and Laravel Timed Out While Waiting for the Machine to Boot
I have been able to develop Laravel applications on my Windows 10 environment for quite some time using Homestead. Recently, I have been getting errors when loading up the dev environment. The following error is happening. Timed out while waiting for the machine to boot. This means thatVagrant was unable to communicate with the guest…
-
Laravel Dev Environment in Ubuntu 18.04
Here is how to set up a Laravel dev environment on Ubuntu 18.04 LTS Bionic Beaver.
-
Laravel Homestead on Windows Issues
I really want to use Windows and Laravel Homestead as a dev environment so that I don’t have to keep pulling out my Macbook Pro when I’m at home. I have a 2015 iMac at home but I do want to utilize the better hardware on my PC. No matter how many times I try,…
-
Laravel Development on Windows 10 Using Linux Subsystem
This is a guide on how to configure Windows 10 using the Fall Creators Update released in October 2017. I will be using Ubuntu for the Linux Subsystem. Ubuntu Turn on Windows Subsystem for Linux in the Windows Feature Restart Windows so it fully installs it Then go to the Windows Store app and download…
-
Laravel 5.4 with Foundation 6.3
I wanted to share how I got Foundation Site 6.3 to work with Laravel 5.4 and webpack. I tried this on a brand new Laravel project. First, edit the package.json file and replace the bootstrap-sass entry with “foundation-sites”: “^6.3.1” Then run npm install. This will download all the dependencies and store them in the node_modules…
-
Curl Error 60 with SSL Certificate
I am writing an app using the TMDB API. It uses CURL to access the API. I get the following error. Here is how I fixed the error. Download and save the PEM file to your PHP installation directory / extras / ssl / cacert.pem. Edit your php.ini file. Enable the entry curl.cainfo =…
-
Configuring Windows Server 2012 to Run a Laravel Application
My latest project required me to use the Laravel framework and use a MSSQL Server backend. To do this, I will be using Windows Server 2012, IIS, and MSSQL Server 2012. Installing IIS First thing is make sure every thing is up to date. If it’s a brand new server, you will need to install…