Laravel simple user CRUD app for beginners

This is a simple tutorial where you can learn how to create a Laravel application using Laravel, PHP, and MySQL. Learn how to let users register, log in, log out, create blog posts, query for only blog posts they’ve authored, and more. My motivation is to learn more about Laravel, watch tutorials, and recreate as … Read more

Database schema templates

DrawSQL

I stumbled upon a great website with real world examples of database schemas called DrawSQL. For me one of the hardest parts of creating an application is thinking about it’s database design. Especially if you are beginner in programming with little experience. With DrawSQL you can create you own database schemas, and check the database … Read more

OpenWeather API

OpenWeather

If you want to test API in PHP, here is a useful free Current weather API. https://openweathermap.org/api First you have to SignuUp for FREE API key. https://home.openweathermap.org/users/sign_up Create and view Current weather API key: https://home.openweathermap.org/api_keys Call current weather data How to make an API call Access current weather data for any location on Earth! We … Read more

Croatian OIB (Personal Identification Number) generator

Provjera OIBa oib.oib.hr

The OIB (Personal Identification Number) is a unique numerical identifier for legal and natural persons in the Republic of Croatia. The OIB consists of 11 digits, where the first 10 digits represent the identification number assigned during the issuance of the OIB, and the 11th digit is a control digit calculated according to the “Module … Read more

Install Laravel on Ubuntu 20.04

laravel-on-ubuntu-20-04-laravel

Among the web development frameworks, Laravel is always heard and is the priority of developers to improve and develop complex web applications. Since the PHP programming language is one of the best programming languages in the field of web design, Laravel is a PHP programming language framework that is provided as an open source and … Read more

How To Secure Apache with Let’s Encrypt on Ubuntu 22.04

lets_encrypt

Introduction Let’s Encrypt is a Certificate Authority (CA) that facilitates obtaining and installing free TLS/SSL certificates, thereby enabling encrypted HTTPS on web servers. It streamlines the process by providing a software client, Certbot, that attempts to automate most (if not all) of the required steps. Currently, the entire process of obtaining and installing a certificate is … Read more

Default Ubuntu Apache Main Configuration File apache2.conf

apache2_conf

The apache2.conf file is the Main configuration file of the Ubuntu Apache HTTPD Web Server. Location of the Ubuntu apache2.conf file is /etc/apache2 directory.

Following is the Default Apache configuration file found in Ubuntu Server 16.04. Download apache2.conf file.

How to Install Laravel on Ubuntu

Laravel installation

How to Install Laravel on Ubuntu Before we start, you’ll need to SSH into your virtual private server. Here’s a helpful tutorial to help you along! Following the steps below will walk you through the easiest way to install Laravel on Ubuntu: 1. Install Apache Web Server For Laravel to work, you’ll need Apache. It is one … Read more