Mailcoach v4 has been released: drip campaigns, automations, mail templates and much more
I'm proud to announce that Mailcoach v4 has been released. Mailcoach already was a great solution to send out bulk emails affordably. With an entirely refreshed UI and new...
Mar 25th 2021
•
freek.dev
Vite with Laravel: Using TypeScript
Vite transpiles TypeScript out of the box.
Vite only performs transpilation on . ts files and does NOT perform type checking. It assumes type checking is taken care of by...
Mar 25th 2021
•
sebastiandedeyne.com
Vite with Laravel: Using React
Vite supports JSX out of the box (you might have to rename . js files to . jsx), so there are no additional steps to get started with React. However, you’ll probably...
Mar 25th 2021
•
sebastiandedeyne.com
Don't write your own framework
You can listen to this post
If you prefer listening over reading, you can listen to this post on YouTube or by subscribing to my podcast...
Mar 25th 2021
•
stitcher.io
Laravel WorldWide Meetup #7: signing in with Laravel and how the Laracon Online website was built
Here's a recording of the Laravel Worldwide Meetup #7. Miguel Piedrafita talked about the various options of signing in with Laravel. After that, Caneco shared some of the secrets behind...
Mar 24th 2021
•
freek.dev
Using Laravel's parallel testing inside your package tests
Laravel recently added parallel testing to the framework using the Paratest package which runs PHPUnit in separate parallel processes. Adding support for this in your own...
Mar 23rd 2021
•
rias.be
Using Laravel's parallel testing inside your package tests
Laravel recently added parallel testing to the framework using the Paratest package which runs PHPUnit in separate parallel processes. Adding support for this in your own...
Mar 23rd 2021
•
rias.be
Vite with Laravel: Using Vue.js
To transpile Vue single-file components, install @vitejs/plugin-vue. If you are using Vue 2, install vite-plugin-vue2 instead.
{
"private": true,
"scripts": {
"dev": "vite",...
Mar 22nd 2021
•
sebastiandedeyne.com
Vite with Laravel: Using Tailwind CSS
Vite includes PostCSS support, so adding Tailwind doesn’t require too much configuration.
First, install Tailwind and its peer dependencies postcss and autoprefixer.
{
"private": true,...
Mar 22nd 2021
•
sebastiandedeyne.com
Vite with Laravel: Auto-refresh Blade views
We’re up and running, but there’s another Laravel-specific quality of life improvement we can make: auto-refreshing when a Blade file changes.
To do this, we’ll write a simple Blade plugin...
Mar 22nd 2021
•
sebastiandedeyne.com