Quantcast
Channel: Laravel Daily Archive Feed
Viewing all 481 articles
Browse latest View live

Laravel 6 in August, Serverless Vapor and Successful Projects

$
0
0
Laravel 6 in August, Serverless Vapor and Successful Projects

Hey hey, 
A lot to cover today! We finally know what Laravel Vapor is (see links below), and also this newsletter has many articles from the community.

Personally, I dedicated this week to project management, cause I realized some of the projects we're handling don't generate enough profit. So a few articles around how to scope/estimate the tasks, and why it is so crucially important for overall success.

Have a good read!




From LaravelDaily Team








News from Laracon US








From Laravel Community





























That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom


MediaLibrary Tips, Design Patterns and Organizing Routes

$
0
0
MediaLibrary Tips, Design Patterns and Organizing Routes

Hey, 
Usual Thursday with Laravel weekly newsletter. 20+ useful articles with tips, so without longer intro - let's get into it!




From LaravelDaily Team





From Laravel Community






















Not about Laravel






That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Free Courses, API Generator and Quick Tips

$
0
0
Free Courses, API Generator and Quick Tips

Hello,
Usual Thursday newsletter with a lot of useful tutorials. But first...

Unusual offer for our QuickAdminPanel. Decided to focus on that product for upcoming weeks/months and grow its customer base with a lot of demo projects and tutorials around adminpanels in general. As part of that, ONLY THIS WEEK we offer a promotion.

If you purchase Unlimited plan of QuickAdminPanel 2019 ($199.99/year) this week,
you receive a 100% discount code for ALL our LaravelDaily Courses
(total price $19x6=$114).
 
Just go to 2019.quickadminpanel.com, click TRY NOW on top to start a free trial, and if you like it - purchase the plan by the end of this week.

Also, expect a lot of new material around QuickAdminPanel in next weeks/months. I really want this product to succeed, cause I see how much time it saves us for client projects, so the world should know about it, and my "marketing" is about helping YOU to save time. And also to learn something along the way.

Now, let's get to this week's content from myself and Laravel community.




From LaravelDaily Team









From Laravel Community






















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Caching, Simplification Tips and 30 Tips

$
0
0
Caching, Simplification Tips and 30 Tips

Hey guys,
This week is full of wonderful articles from the community, without any intro - let's dive in!




From LaravelDaily Team






From Laravel Community

























Not That Much About Laravel










That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Accessors "Magic", Recursive Eloquent and Laracon US Videos

$
0
0
Accessors "Magic", Recursive Eloquent and Laracon US Videos

Hello hello,
Usual Thursday newsletter, with a lot of content from myself personally, and also from the community, including rebranded laravel.com website in preparation for Laravel 6 release. 

By the way, will any of you be in Amsterdam for Laracon EU next week? Let's meet for a beer/coffee, reply to this email then!




From LaravelDaily Team










From Laravel Community























Not about Laravel but about Dev-Life







That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

When is it worth upgrading to Laravel 6? (or any version)

$
0
0
When is it worth upgrading to Laravel 6? (or any version)

Hello hello,
Usual Thursday newsletter, which I'm preparing from a hotel room on the first day of Laracon EU in Amsterdam. This two-day event will showcase Laravel 6 (which will actually be released on 3rd of September), and also very intriguing Flare app by Spatie and BeyondCode teams.

Meanwhile, I want to make this newsletter more "personal" and not just a bunch of links, so every week I will cover some topic from my own experience and share some thoughts.
So, today let's talk about upgrading Laravel.

Question: is it worth upgrading Laravel version before the official release, or on the exact day?
Answer: nope, we tried.
The thing with version upgrades is not Laravel itself, it's pretty stable I'm sure. It's about PACKAGES. So we tried to upgrade our QuickAdminPanel to support and generate Laravel 6 panels as early as possible, and we tried to use Dev release of Laravel 6.0, but we rely heavily on two packages - Spatie Media Library and Yajra Datatables. So installation failed with this message.

Overall takeaway: before planning any upgrade to newest Laravel version, check the packages from your composer.json first.
Are they even available for that newer version? Maybe some packages have even become abandoned and there will be no updates? In that case, the solution is probably to fork that package into your own package, and use that from now on. Or try to remove that package dependency and look for alternatives, but that is a painful process.

So, when are you planning to upgrade your projects to Laravel 6? Do clients give you time/budget for that?

Now, let's get to this week's useful links with content from myself and the community.




From LaravelDaily Team








From Laravel Community

















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Laravel 6, Code Snippets and Refactoring

$
0
0
Laravel 6, Code Snippets and Refactoring

Hey, Thursday Laravel newsletter here!

This week was extremely busy for me, so didn't write articles or shoot videos, only quick Twitter tips below, but it seems that the audience likes them!

Before this week's useful links, wanted to talk about the reason of being busy. We had quite a few problems with our QuickAdminPanel and here's moral of the story for you: it's ok to fail and to refactor big part of the code. Even if you realize some fundamental flaws in your architecture, it's never too late to notice them and change the core parts, for the better future goals.

That's exactly what happened to us. In new 2019 version, we implemented actually deploying the generated code to our servers, via many queue jobs, and we messed up with some edge case scenarios, like if someone generates a CRUD, then installs some modules, removes soft-deletes and a few more actions, then queue jobs started overlapping with unpredictable result, which eventually caused generator to crash and user would see "Generating files..." loading indefinitely.

So, after a few attempts for quick fixes, we decided to rollback some functionality and spend 1 month on full refactoring of queues in generator. Happens. Hard (and expensive) decision, but it should pay off in the end.

Anyway, enough of me crying on your shoulder, let's get to this week's useful links and content.




Quick Tips from LaravelDaily Twitter






Everything about Laravel 6














From Laravel Community















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Must-have Packages, Github Actions and Laravel 6 Stuff

$
0
0
Must-have Packages, Github Actions and Laravel 6 Stuff

Hey,
Thursday is the day of Laravel newsletter, right?

The main thought of this week for me is that planning and thinking should be a crucial part of developer's time. It's often tempting to just dive and write code, cause everything "seems" clear, but actually write out on paper what are the deliverables for client, what are scenarios for success or failure, what data structure is the best for certain situation... All of that leads to better decisions in the code architecture.

Lately I've had a few semi-failed projects where our team just dove right into coding, and then had to refactor quite a lot. So I wish for you that you have time (and courage!) to talk to clients and their customers more, and then just sit and think for a while, write out all the details, and only then turn them into code.

Ok enough philosophy, here are the useful links for this week.




From LaravelDaily Team




Quick Tips from Twitter







From Laravel Community























That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom


Laravel Horror Stories, and To Vue or Not To Vue?

$
0
0
Laravel Horror Stories, and To Vue or Not To Vue?

Hey, usual Thursday newsletter about Laravel! 

Today in a quick intro I want to talk about new shiny technologies. These days every year there's another new framework or language - Vue, Tailwind, Inertia.js, you name it. And two years ago we thought that Vue has became so popular that we built a Vue adminpanel generator version for QuickAdminPanel. I won't even post a link to it, because the project failed financially.

As much as it seemed that Vue.js is hugely popular in Laravel community with tons of tweets, articles and videos, our numbers said other things. Majority of our customers were still happily using jQuery-Datatables-based version, and only 5% or so even tried Vue version, not to mention buying it. 

And since today there's a post on Reddit (link below) of person asking whether to switch to Vue, it's a proof that there are very many back-end developers who stayed back-end and never adopted any JavaScript framework. And that's ok, they still earn money, no one died.

My point here is with every new framework - it's worth to try it and adapt if you like it personally, and if it fits for your project(s), but don't jump on it just because people are talking about it. Wait a little, until it becomes more widely adopted. 

Now, let's get to this week's links and content!




From LaravelDaily Team









From Laravel Community



























That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Laravel 6 Demos, and I Need Your Help/Advice

$
0
0
Laravel 6 Demos, and I Need Your Help/Advice

Hello hello,
Usual Thursday with newsletter, and in addition to huge amount of community articles, in the beginning I will share 2 articles and 2 videos from myself, but most importantly - 5 new demo-projects based on Laravel 6 and QuickAdminPanel. They are completely free on Github for you to use, see below.

Now, important part of this email - I need your help.
In 5 years of doing this newsletter, I constantly share stuff and rarely ask for anything in return, but now it's time.

We're currently re-thinking the strategy for our QuickAdminPanel for 2020 and beyond, and thinking to go big and jump outside of only-adminpanel generator. But before that, we need to understand the people who don't buy the current version. Don't get me wrong - we have many customers and it's profitable, just want to reach bigger audience. So, to do that, if you are NOT our customer, could you fill in simple 2-question survey? Only 2 questions, should take you a minute max.

Here's the link to the survey: https://www.surveymonkey.com/r/58PWNM8
Much appreciated!


Now, let's get to this week's content.




From our LaravelDaily Team






New QuickAdminPanel Demo Projects







From Laravel Community




























Random Stuff






That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Eloquent Examples, Laravel 6.1 and new ddd()

$
0
0
Eloquent Examples, Laravel 6.1 and new ddd()

Hello,
This week is a "thank you" week. I'm grateful so many of you responded to my last week's survey - I've reached the limit of free SurveMonkey plan of 100 responses, didn't expect that! You can see the results via this link.

It was very very helpful to see what people are looking for in QuickAdminPanel, or in any code generators, "market analysis" is a very powerful thing. Glad that only 2 out of 100 said they didn't like our generator.

Surprisingly, quite a lot of features requested by people already exist in our tool - like selecting Laravel version, relationships, REST API generator etc. That's another proof that people don't really take time to analyze the tools they are using, or planning to use. Advice for you - carefully read the docs of packages or tools you're after! (I'm constantly amazed by PhpStorm capabilities, for example)

Now, back to this week's links and useful tutorials, enjoy!




From LaravelDaily Team








From Laravel community
























That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Roles-Permissions Demos, Multi-Language Packages and Laravel 6.2

$
0
0
Roles-Permissions Demos, Multi-Language Packages and Laravel 6.2

Hey hey,

This week our team has found the time to update old popular articles and free repositories from back in 2017. Quite a lot changed since then, so check out new versions of the articles about Artisan commands or Multi-Language packages.
From doing the upgrades, I have a takeaway that the best package on the market is the one that is actively maintained for long enough - quite a few promising packages were shut down or abandoned in a few years.

Also, I'm personally waiting for new Taylor Otwell's mini-series about building products, marketing, motivation and similar topics.
I was really inspired by Adam Wathan's success story of building and selling products for developers, and I think we will all learn a ton from Taylor, too.

Now, let's get into this week's content from myself and the community!




From LaravelDaily Team









From Laravel community


























That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Demo Projects, DB Backups and API Guides

$
0
0
Demo Projects, DB Backups and API Guides

Hello hello,

Usual Thursday newsletter, with a lot of content, both from myself and the community. Slowly but surely I switched to video as the main form for my content, cause I feel it's the most useful way for you to see everything "in action", and I can shoot many more videos in the same time as I would write a long article explaining all the details. For now I'm on schedule to post videos *daily*, so I recommend to subscribe to Youtube channel.

Also, speeding up on creating free demo-projects based on QuickAdminPanel (7 of them officially published already) but also expanding to demos with front-end pages, like this one below. So expect more in this area as well.

Now, let's get to today's batch.




From LaravelDaily Team






From Laravel Community


























That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

How to Create Quicker vs Bigger Laravel Projects

$
0
0
How to Create Quicker vs Bigger Laravel Projects

Hey guys,

It's interesting to see how different content is aimed at different audience. I was always a fan of "quick wins" or basic knowledge and tools how to deliver quicker (see article below), meanwhile community is sharing more and more resources how to deal with bigger projects - design patterns, deployment setups, some advanced techniques. And I think there's market for both, depending on the stage of your career.

Also it was interesting to see massive amount of comments to my tweet where I'm kinda blaming people for using XAMPP and shared hosting for PHP. Reason is that it gives me trouble to support such people for QuickAdminPanel clients, to help them run Laravel code locally in XAMPP. But anyway, in the end, I had to apologize. So again, different projects - different developers - different tools. No silver bullet.

Final thing - I'm rethinking the future of this newsletter. Cause it seems to have stopped growing in subscribers audience (currently at 2,500) and also open/click rates are at the same level for long time - 50-60% open rate and 10-15% click rate. Which means that I'm doing something wrong if it's not growing. Maybe I should do more personal newsletter instead of just curating community links? Maybe I should focus on only some kind of links and send TOP 5 instead of 20+ every week? Or should I cancel the newsletter, cause it takes quite a lot of time to prepare, and direct value to me is not that big. Dunno, for now just thinking.

Now, let's get to this week's content.




From LaravelDaily Team








From Laravel Community






















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Deployments, Docker and More Tips

$
0
0
Deployments, Docker and More Tips

Hello hello,
Usual Thursday newsletter about Laravel. Thanks to everyone who replied to my last week's email, good news is that newsletter won't be shut down or abandoned, all good. I'm just thinking how to make it more valuable for all sides, and I have a few ideas from you, too, so expect some changes in following weeks.

In general, I would like to see more of your involvement in this, so it wouldn't be just list of links, but also discussions on best practices, sharing the knowledge, maybe some interactive quizzes etc. Will see.

And now, let's get to this week's "usual" content.




From LaravelDaily Team










From Laravel community






















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom


Countries/Cities Seeds, Bug Tracking and Form Builders

$
0
0
Countries/Cities Seeds, Bug Tracking and Form Builders

Hey guys,
After some thinking, I decided on the direction of this newsletter. So in addition to weekly links (they don't go anywhere, just will curate them more strictly to pick only the best ones), I will add two things which are more interesting for me personally, to keep myself motivated to send this every Thursday. 

First, I will add more content about project management and successful IT projects in general, cause that's where I'm currently - not coding day-to-day, but more working on overseeing the team.

And second, I want YOU to participate in this newsletter, so each week I will have QUESTION OF THE WEEK for you, which will be kind of a mini-article in itself, but not published anywhere else except for this newsletter. This way you will get an exclusive opinion on something, or idea we're working on.

So, let's go!



QUESTION OF THE WEEK
How do you handle testing with data as close as possible to production?

Pretty big pain for everyone is to test new features or bugfixes locally, when the situation actually occurs on live server, and you cannot reproduce the exact same thing locally. What options do we have then?
- Deploy to live and test there (fingers-crossed driven development)
- Copy production DB to local machine and reproduce it (often you are not allowed to do that with confidential/sensitive data)
- Look at production DB and try to re-create same data with some seeds and automated tests locally (painfully long but probably the most correct way)

So what do you do in this situation?

We are currently playing around with a proof-of-concept, and I want your opinion (reply to me personally!)
What if there was an artisan command to dump the production database but with encrypted sensitive data, like names and emails?
In our case, we're trying to do that for staging server, one client asked us specifically for that - copy production database to staging server bet remote all the emails, to prevent some random "real" email from being sent. 
So now we have a Laravel code snippet (not a package, yet) which triggers production DB dump to production server, replaces all sensitive data with Faker, and then allows to download that SQL remotely (to staging server) with some auth key, similar to OAuth (also can restrict by IP address, for example). After download that SQL is deleted from the server.

The goal is to launch that script from staging server on any deployment to staging - with Laravel Envoyer. So every time something new is pushed to staging, it would have semi-live DB to test with.

What do you think? Would you use something like that, as a package? It still feels a bit "insecure" for me to do it this way, but what other options do we have? Any ideas?

Now, let's get to this week's useful links and content.



From LaravelDaily Team










From Laravel Community



















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

CSV Validation, Calendar Demos and API Documentation

$
0
0
CSV Validation, Calendar Demos and API Documentation

Hello hello,
First, if you're here to just click the weekly links, scroll down to them, they are below.

But if you are interested in my personal thoughts, here's something for you.

First, thanks to everyone who replied personally to my last week's question about dumping production database to staging with encrypting some of it.

My takeaway from all discussions is that it's a very individual and risky thing to do. Even if we don't care about legal stuff (like who has permissions to actually access the database and why), it still depends on a lot of things how exactly would you perform that export-encode-import.

So I decided that whatever we're playing around with a team - we will NOT release in public. Just too risky - imagine we release a package, and some less experienced junior developer accidentally puts client's database at risk. Who would be to blame? Our package, of course.



Now, generally last week's newsletter and new format received some reaction:
- 11 replies to the email (thanks again, was nice to discuss stuff personally!)
- 9 unsubscribes (great, you're saving my money, did you know I'm paying Mailchimp $15 for every newsletter issue I'm sending? Like, now, I will click SEND and it will cost me $15)
- Lower click rate of 9% instead of usual 10-11% (not everyone scrolled down to the actual links, and that's also great - I want you to READ my newsletter and my thoughts, not just click to websites)

All in all, let's continue in that direction. Speaking of which.. 



[QUESTION OF THE WEEK]
How do you document your APIs?

The more work we're doing with API-based projects, the more documentation we need to write for front-enders: endpoints, parameters, example request/responses, exceptions etc.

For a long time we've been using Marcel Pociot's package Laravel APIDoc Generator but it has some limitations - generates only two-level menu items, its one-page solution is pretty slow to load for bigger projects. 

On the other side, we have OpenAPI (ex Swagger) which seems to be a market standard outside of Laravel world. And we've never actually tried it - every time I looked at its documentation, it seems so much work to write all the syntax in the OpenAPI format, so I went "nobody got time for dat" mode. But maybe you will change my opinion, or share some tricks how to use it in a quicker way?

Or maybe you're documenting APIs with some other tool or in another way? I would appreciate if you share your experience, thanks!



From LaravelDaily Team







From Laravel Community
















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Free Laravel Helpdesk and Invoicing Systems

$
0
0
Free Laravel Helpdesk and Invoicing Systems

Hey guys,
After experimenting for a few weeks, decided to get back to the roots. Tried to add what's interesting for ME (to keep myself motivating to send newsletter), but thinking about it, this newsletter is for YOU, not for me. And what majority of you subscribed for, is Laravel tips and links, not for my questions or project management stuff. So, two things:

1. This newsletter goes back to "original" format - set of links, with my short intro sometimes.
2. I will create a separate newsletter for my personal thoughts around business and project management - when it's live, I will send you the link if you want to subscribe to that one.

With that said, let's get to this week's links!



From LaravelDaily Team





From Laravel Community



















That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Invoices Package, Black Friday Deals, PHP 7.4 and Vue 3

$
0
0
Invoices Package, Black Friday Deals, PHP 7.4 and Vue 3

Hey hey,
After celebrating 10k subscribers on my YouTube channel, back to work.

A lot of stuff is inside of this newsletter. On top of our own new package, many tutorials from the community, interesting discussions on Reddit and hey - Black Friday deals. Enjoy!




From LaravelDaily Team



From Laravel community



























Project Management Stuff






That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

PHP 7.4, Many Tips and My New Newsletter

$
0
0
PHP 7.4, Many Tips and My New Newsletter

Hey hey,

First, as I announced a few issues back, I'm starting a separate newsletter on the *business* side of IT projects, as I became more interested in it. So, you can subscribe to "Web Manager" newsletter now! It will be a weekly series, probably every Thursday, too.
Issue 01 is already out, you can view it here.

Now, with PHP 7.4 out, and we may need to convince our clients to give budget for upgrade, there are a lot of articles on how to install it and what are the benefits, check them out below. And, as usual, a lot of articles from the community, enjoy!




From LaravelDaily Team




Everything about PHP 7.4








From Laravel Community

























That's it for this week, see you in the next newsletter issue!
Povilas Korop
LaravelDaily.com







This email was sent to <<Email Address>>
why did I get this?    unsubscribe from this list    update subscription preferences
Web Coder Pro Ltd · Unit A3, Gateway Tower, 32 Western Gateway · London, London E16 1YL · United Kingdom

Viewing all 481 articles
Browse latest View live