The Laravel AI SDK is now available.
Really proud of this package and how easy it makes building AI features into your Laravel applications.
Agents, images, audio, transcription, embeddings, similarity search, pg_vector support, and more. 🤖
https://t.co/uVf3UL3aXb
📄🤖 Agentic RAG with Qdrant
A system that enables natural PDF conversations by combining LangGraph's agentic workflows with Qdrant vector search and GPT-4 vision for intelligent document processing and retrieval.
Explore the implementation 👉 https://t.co/l5CxzQC45e
Congratulations to PM Shri @narendramodi Ji, students, teachers and schools on 'Pariksha Pe Charcha 2025' making it to the Guinness Book of World Records for clocking the highest number of participant registrations in a month.
This is a record-breaking feat which elevates the programme to the role of a global exam stress buster for students around the world, accelerating the nations in the path of nurturing human resources better.
It is indeed a grand moment of pride for India.
When configuring read/write MySQL connections, add 'sticky' => true to avoid inconsistencies!
With this, reads go to the write host right after a write, ensuring fresh data is returned.
#Laravel#PHP#MySQL
TallCraftUI is a Laravel Blade UI library built on the TALL stack by @DeveloperMithu 📦️ It provides a collection of customizable pre-built components! - https://t.co/JyRsLE2QpN
🔥 Laravel tip: Implicit Enum Binding = clean, type-safe routes!
Define a string-backed enum, use it as a type hint in your route definition, and Laravel automatically validates route segments, returning 404 for invalid values. Elegant, simple, powerful! #Laravel
I've worked on a proof of concept that allows you to add dumps and logs in your production Laravel apps – on the fly, no performance impact.
Check out livedebug 🤯
Deployed on @laravelphp Cloud ☁️
#Laravel tip:
Optimize Your SQL Queries with Eager Loading Constraints
Eager loading can drastically reduce the number of database queries. However, if you only need specific columns or filtered data from a relationship, adding constraints will optimize the query.
Use constraints while eager loading:
PHP 5.4 was actually fine, from a language perspective. The main difference between PHP then and PHP now is performance and ecosystem. I'd happily still use only PHP 5.4 language features.
Laravel Tip💡: Insert Or Ignore
Sometimes, you might want to ignore errors when inserting data. Laravel comes with the "insertOrIgnore" method that does exactly that 🚀
#laravel