Monday, August 8, 2022

What's New Features in Laravel 9? — Top Features & Updates

 


Laravel has been one of the most popular PHP frameworks for many years and for a long time now. It is adaptable, scalable, versatile, and has become one of the in fact the systems for engineers and companies working with PHP. It’s elegant, scalable, has become one of the de facto frameworks for developers and companies working with PHP. Laravel 9 is its latest release and comes with many new features.

There’s no surprise that Laravel has become one of the leading PHP frameworks for building endeavor review web applications, custom and robust applications. Its features and functionalities have developed so well that it has ended up being the go-to PHP system for web application development.

Initially it scheduled to be released by September 2021, Laravel 9 was pushed to January 2022, making it the first long-term bolster (LTS) release to be introduced following the 12-month release cycle.

Here are the expert views,

“I’m finding the Laravel 9 release is much more of a minor “maintenance” release compared to other previous major Laravel releases. Committing ourselves to only 1 “major” release a year really pushed us to ship a bunch of stuff we would have typically held back for a major.”- Taylor Otwell - Founder and CEO of Laravel

“Laravel 9 doesn’t have as many headline features as a normal Laravel release because the team have been focusing on releasing new features throughout the year now that they’ve moved to a yearly release cycle. There’s a pretty comprehensive list of the new features at https://laravel-news.com/laravel-9. The one thing that isn’t mentioned there that I’m excited about is the new support for generics on the Collection class which will really help improve static analysis.”- Jess Archer - Odcast Co-hoster at the BaseCode

Read more on What’s New In Laravel 9

Monday, August 1, 2022

How to Structure Your Sass Codebase

 

SASS (Syntactically awesome style sheets) is an extension of the CSS which adds syntactic power to the basic CSS language making it easier for developers to write CSS. It is just a CSS preprocessor, so that you can write CSS in an easy and convenient way.

“Sass is a meta-language on top of CSS that's used to describe the style of a document cleanly and structurally, with more power than flat CSS allows. Sass both provides a simpler, more elegant syntax for CSS and implements various features that are useful for creating manageable style sheets.” 

“Sass is an extension of CSS3, adding nested rules, Variables, mixins, selector inheritance, and more. It’s translated to well-formatted, standard CSS using the command line tool or a web-framework plugin.”

It’s Sass not SASS. Sass doesn’t stand for anything, except maybe making your CSS Sassier. Sass makes CSS more Sassy because it’s a preprocessor. Preprocessors make writing code easier.

If it helps you making CSS more like a real programming language. If that doesn’t help, just think of it as a way to write CSS that’s cleverer.


Read more on Organize And Structure Your SASS Code