Laravel is an open source PHP MVC framework created by Taylor Otwell
8 Read ArticlesTopics
Topics are used as an extra way to categorise content on the site, tying it to specific uses cases, patterns, approaches and subjects.
API stands for application programming interface. It is a way for components to communicate, most commonly used for machine to machine communication.
1 Read ArticlesA design pattern is a defined and reusable method of solving a particular problem in programming.
4 Read ArticlesAuthentication refers to act of identifying the user of a system.
1 Read ArticlesAuthorisation refers to the control of what an authenticated user can access.
1 Read ArticlesMulitenancy is a software architecture that allows a single instance of software to server multiple tenants as if each were a separate instance.
2 Read ArticlesSoftware architecture refers to the structure of a piece of software and the way in which it is created.
3 Read ArticlesValidation is the validating of data, typically user submitted data, by comparing it to set of rules.
1 Read ArticlesA freelancer is someone that is self-employed and is often not committed to a particular employer for a long-term.
1 Read ArticlesA database is an organized collection of data, generally stored and accessed electronically from a computer system. Unless otherwise specified, I will typically be referring to MySQL/MariaDB.
5 Read ArticlesORM stands for Object-relational mapping and is a technique for converting data between systems in object-oriented programming languages.
3 Read ArticlesEloquent is the ORM (Object-relational mapping) that comes with Laravel. It uses the ActiveRecord pattern.
4 Read ArticlesA repository is an abstraction of the interaction with a data source, and/or the persistence layer. The idea is that your database interactions are sufficiently abstracted as to be easily modified and swapped out with little to no overhead.
2 Read ArticlesA framework is an abstraction that provides both basic and generic functionality so that developers may build ontop of it, without having to write all of the boilerplate code each time.
1 Read ArticlesRouting refers to the process of define endpoints and dispatching, or routing, requests to your application's code.
0 Read Articles