Day 116: SSH and components

Dan Esmail - 4/26/2023

Intro

With the Laravel structure and everything I have been reading about it, I feel more confident with building out my routes. I have started to work on building components. This has taken me down a weird turn to learn a little bit about SSH

Components

With building out routes I have been really interested in blade templates. mostly because it gives me access to components. This is going to be key in building out my blogs every day. This way I can use some templates to create basic HTML that I will reuse every day. Like the nav bar, header, and even the code box.

I ran into a few issues with this. Not too many but enough to make me re-read some information. I have found that as long as I build the class in the right directory I’m set. I also have to put the view in a components folder within the view folder. After this is done it’s a lot easier to pump out different components. With Laravel it’s all about the directory you put your files in.

SSH

Now I have to learn a little bit about the SSH. this is the secure shell for Hositigner. I am just using this to access the command line so that I can use it to build out components. This isn’t necessary but can be helpful down the road.


Day 1

Day 1