Running NativePHP on Windows: An Unofficial Developer’s Hack

NativePHP is an innovative approach to building native applications, leveraging the familiar tools of PHP. It revolutionizes the development process by letting you create powerful, native applications using the PHP language and environment you’re already comfortable with. No need for learning new languages or frameworks; with NativePHP, you can directly use your existing PHP skills … Read more

Laravel Tablar Admin Dashboard

It’s been 2 weeks that I have been working on a New Laravel Admin Dashboard Template. jeroennoten/laravel-adminlte is a well-known admin dashboard laravel package. I used it in different projects. It’s highly customizable & feature-rich. The dynamic menu generator with auth guard is the most fantastic feature of this laravel package. Tabler is one of … Read more

DI (Dependency Injection) in PHP

There are a few similar terms in the programming world like HTML injection, SQL injection, etc. What does DI mean? Dependency Injection is a design pattern that helps avoid hard-coded dependencies for classes. Let’s try to make it clear using a simple Shopping Cart Example Suppose, You have an online shop and there are 2 … Read more