blog

How to add Customer'a Company Data for Invoice on the Registration Form in Laravel Spark

Published: 3 years ago

Laravel Spark is a Laravel based package that provides scaffolding for all of the stuff you don't want to code. Subscription billing, invoices, authentication, password resets, team billing, two-factor authentication etc. It's a good starting point for a project that needs billing. In this post I will show you how to change a registration form so it includes the information your client needs on the invoices he receives from you.

Read more...
blog

How to add a column to an existing multidimensional php array and then change value in one of it’s columns

Published: 5 years ago

If you want to add column to an existing PHP array you can do in accessing it by reference.

Read more...
blog

How to install DBMail with MySQL backend on Ubuntu Server 14.04 LTE

Published: 5 years ago

In this article I will show you step-by-step how to install and configure DBMail server on Ubuntu Server 14.04 LTE. DBMail in my opinion is a great solution for those who want robust and scalable mail server.

Read more...
blog

How to migrate the whole MySQL database with data and users into another server

Published: 7 years ago

Recently I had to move my services from one server into another. The problem was that I had lots of web pages relaying on many databases with specific users. What’s more I didn’t want to change the databases users and passwords. If you have similar problem this is the way you can do it.

Read more...
blog

Basic authentication in Laravel 5.1 route how-to

Published: 7 years ago

Sometimes you’d like to have very simple and basic authentication similar to HTTP basic authentication applied to a directory.

Read more...