In this post, I would like to show you deploying your slim framework project to CPanel (without SSH access). In general, for CPanel, the web root directory will be public_html directory. Slim3 Framework Authorization […]
Slim3 Framework Authorization with JWT (JSON Web Tokens)
In this post, I will show how you can secure your Slim3 Framework-based applications using JSON Web Token (JWT). To know more about JWT and How it works visit the official website(https://jwt.io). Download & Install […]
How to enable CORS in Slim3 framework
In this post, you will learn about Cross-Origin Resource Sharing. Http requests are restricted by the same-origin policy, which means where scripts can be loaded from the same Origin. Specifically, the protocol, domain, […]
Creating a RESTful API with Slim Framework 3 and Eloquent
Slim is a full-featured, open-source PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. It comes with a sophisticated URL dispatcher and middleware architecture that makes it […]
How to Use Eloquent in Slim Framework
The Eloquent ORM makes it incredibly easy to interact with a database. Today we’ll look at how we can use Eloquent to interact with our database inside your Slim Framework. The Eloquent ORM provides an ActiveRecord […]
Creating a RESTful API with Slim Framework 3, PHP/MySQl
Slim is a full-featured, open-source PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. It comes with a sophisticated URL dispatcher and middleware architecture that makes it […]
How to configure/load database in Slim Framework 3
Slim is a full-featured, open-source PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. It comes with a sophisticated URL dispatcher and middleware architecture that makes it […]
Slim framework 3 – Route Groups
Slim lets you group related routes. Route groups allow you to share route attributes, such as middleware or URL segments across a large number of routes without needing to define those attributes on each individual route. […]