https://lnkd.in/dQV-ty5w I recreate someone repo, integration of PHP and React (for hosting on any PHP Server like XAMPP, NGINX and off course thru cPanel too). I know this one is just like same with other people already do. But here the catches, I... - Learn how to use Webpack - Learn how to integrate React with Webpack especially on dev mode - Recreate 9 years old repository (from what I found on github), and some people ask the developer to update it to recent dependencies but no answer from the guy - Integrate in between React + PHP + Webpack with some idea based on Next.js style Reason: I got job as PHP Developer, but in some way I found most library for this job would be better when using React than PHP with jQuery (even I know the godly tier library like jQuery is easier to use), but combine the React with it's modules like Zustand, Valtio, Framer Motion and etc, would make easier to implement any JS things on app. Any other reason, it's more likely to implement in style of Next.js that the company think not use it at work.
Muhammad Rizkiansyah’s Post
More Relevant Posts
-
PHP 8.4 is Now Released! 🔹 Property hooks 🔹 Asymmetric visibility 🔹 New DOM features and HTML5 support 🔹 Object API for BCMath 🔹 new MyClass()->method() without parentheses and a whole lot more!
PHP Core Roundup #20: 📢 PHP 8.4 is Released!
thephp.foundation
To view or add a comment, sign in
-
PHP 8.4 is Now Released!🎉 🔹 Property hooks 🔹 Asymmetric visibility 🔹 New DOM features and HTML5 support 🔹 Object API for BCMath 🔹 new MyClass()->method() without parentheses https://lnkd.in/gEzyf7Kn
PHP Core Roundup #20: 📢 PHP 8.4 is Released!
thephp.foundation
To view or add a comment, sign in
-
🎈🎈[Scrap] Laravel API Tutorial: How to Build and Test a RESTful API Laravel is a PHP framework developed with developer productivity in mind. Written and maintained by Taylor Otwell, the framework is very opinionated and strives to save developer time by favoring convention over configuration. The framework also aims to evolve with the web and has already incorporated several new features and ideas in the web development world—such as job queues, API authentication out of the box, real-time communication, and much more. In this article, we’ll explore the ways you can build—and test—a robust API using Laravel. We’ll be using Laravel 5.4, and all of the code is available for reference on GitHub.
Laravel API Tutorial: How to Build and Test a RESTful API | Toptal®
toptal.com
To view or add a comment, sign in
-
Curious about strict types in PHP? 🤔 Check out a great community article that explains how strict types work when enabled in some files but not others. Written by Joel, it's a simple guide to understanding PHP's design and the tradeoffs it makes. Perfect for those working on legacy projects!
How do strict types work if only enabled in some files? | Mastering Laravel
masteringlaravel.io
To view or add a comment, sign in
-
Reflecting on My PHP Journey: I started writing PHP way back in the days of version 4.0 in the early 2000s, and it has been a fascinating journey ever since. While I've explored many other technologies over time, some of my biggest projects were built with PHP. One of my most memorable projects was building a Windows desktop app in 2014, called phpbrowserbox.com, which allowed PHP applications to behave like desktop applications — a bit like what Docker does today! PHP has evolved massively, and I've had the pleasure of working with many of its amazing tools and frameworks. From Drupal (back in the days of versions 6, 7, and 8), Joomla, WordPress, and frameworks like Yii and CakePHP, to finally discovering Laravel — it was a game changer! I still remember joining the Laravel bandwagon during the release of Laravel 5.4, and it was a wow moment for me. Of course, along the way, PHP has received its fair share of criticism, with people saying it was "dead" and outdated. But fast forward to today, and my joy is unmatched seeing Laravel recently take a $57M Series A investment from Accel with Taylor Otwell continuing to lead the charge. PHP may have had its doubters, but it's still powering some of the biggest innovations today. Here's to many more years of PHP! #PHP #Laravel #WebDevelopment #SoftwareEngineering #TechJourney
PHPBrowserBox
phpbb.africoders.com
To view or add a comment, sign in
-
🚀 Upgrading PHP in Laragon to Install Laravel 11! To run Laravel 11, you'll need PHP 8.2 or newer. If you’re using Laragon with PHP 8.1, follow this quick guide to update to PHP 8.3. This guide covers: 1️⃣ Downloading and setting up PHP 8.3. 2️⃣ Configuring Nginx with PHP 8.3 for an optimal development setup. 3️⃣ Verifying the installation so you’re ready to go. Get your environment Laravel 11-ready in minutes with this efficient update! Learn more here https://lnkd.in/ghsg_gSs
Panduan Update Versi PHP di Laragon
qadrlabs.com
To view or add a comment, sign in
-
Thinking about how to be useful to the DEV community, especially the newcomers in PHP development, I want to introduce to all PHP Jrs the best guide on how to be a master in backend web development using PHP: PHP The Right Way. This Website shows to the new devs all de good practices and premisses to code in PHP. I confess that this guide opened my eyes to forget novice low-quality coding and made me a better professional. So, enjoy your improving time https://lnkd.in/dYMeVJ66
PHP: The Right Way
phptherightway.com
To view or add a comment, sign in
-
Hey PHP 8 enthusiasts! Check my newly launched PHP library, php-attributes-reader. Ever feel like the Reflection API makes reading PHP 8 Attributes a bit clunky? This library offers a simpler approach to reading those attributes from classes, methods, and properties. Think of it as a tiny helper tool to make your dev life a little easier. In the blog post, we explore: Why the library exists (hint: developer experience boost!) How to get started with installation and usage Examples for working with class, method, and property attributes Would love your feedback on this new project! Let me know what you think. https://lnkd.in/gtPG5Yin
Using PHP 8 Attributes Reader to read PHP Attributes
codecraftdecipher.substack.com
To view or add a comment, sign in
-
Unlocking the Power of Property Hooks in PHP 8.4 🚀 PHP upcoming version 8.4 introduces Property Hooks, a feature that takes property management to a whole new level! Inspired by languages like Kotlin and C#, Property Hooks enable dynamic behavior for properties, reducing boilerplate and improving code clarity. 🔑 What are Property Hooks? Property Hooks allow you to define custom logic for getting and setting properties directly, without having to rely on separate getter and setter methods. This means you can add behavior like computed values, validations, or transformations inside the property itself. ✨ Why Use Property Hooks? ✅Cleaner Code: Avoid writing separate getter and setter methods for simple logic. ✅Dynamic Behavior: Perfect for computed properties (like fullName) or value transformations. ✅Maintainable: Keeps logic tied directly to the property, making your code easier to understand and modify. PHP 8.4’s Property Hooks simplify and modernize how we handle properties. Whether you're building APIs, handling domain logic, or just refactoring for better readability, this feature is bound to make your life easier. PHP 8.4 is scheduled to be released on November 21, 2024. What use cases do you see for Property Hooks? Share your thoughts below! 💬 #PHP #PHP8_4 #PropertyHooks #WebDevelopment
To view or add a comment, sign in
-
🚀 Struggling with outdated namespaces in your PHP projects? Latest article from Jakub Mikita is here to help! 📌Discover how to efficiently rename PHP namespaces without duplicating classes or cluttering your codebase. Perfect for developers using Composer, this guide will streamline your workflow and ensure smooth transitions with deprecation notices. 👉Grab the latest dose of knowledge from the "Between the Brackets" series, where our developers explain how to get even more out of your code in a concise, tutorial-style manner. No unnecessary chatter, just the essentials.✨ Dive into the solution and optimize your code! #php #wordpress #betweenthebrackets #guide
How to efficiently rename PHP namespace without breaking backward compatibility
https://bracketspace.com
To view or add a comment, sign in