Advertisement Β· 728 Γ— 90

Posts by Hasnayeen

Post image

PHP devs, ever wanted to run PHPStan in your Pest tests but got flooded with irrelevant errors, so you just stopped running it altogether?

Introducing **PestStan** – a @pestphp.bsky.social extension for @phpstan πŸ’ͺ

4 weeks ago 6 2 2 1

POLLS: The CSS Working Group is looking for author feedback on two topics related to CSS Gap Decorations. Questions below. For background information on Gap Decorations, see the explainer: github.com/w3c/csswg-dr...

1 month ago 19 18 1 0
Preview
a baby wearing a varsity shirt is sitting on a bed ALT: a baby wearing a varsity shirt is sitting on a bed
4 weeks ago 0 0 0 0
Post image

Available for freelance/contract work.
Full-stack Laravel dev with 10+ years of experience. I take projects from idea to shipped, or jump in wherever you need me.
DMs open πŸ“¨

1 month ago 0 3 0 0
Preview
Security Tip: Your JWT Might Be a Forever Key! [Tip #127] Without an `exp` claim, a JWT can remain valid forever, turning a leaked token into permanent access.

Without an `exp` claim, a JWT can remain valid forever, turning a leaked token into permanent access.

securinglaravel.com/security-tip... #Laravel

1 month ago 3 3 0 0
Preview
Forte A complete ecosystem for parsing, analyzing, and transforming Laravel Blade templates. Includes AST querying, code rewriting, formatting, and developer tools.

I am happy to announce that Forte v1 is now available! Forte is my new library for parsing and modifying #laravel Blade.

fortephp.com

1 month ago 17 10 4 1
Post image

Visual reference for all @filamentphp.com lifecycle hooks πŸ’‘β€οΈ

andreia.github.io/filament-hoo...

#Filament #PHP #Hooks

1 month ago 10 2 0 0

from the thumbnail of the video it looked like opencode lol, anyway congrats on the launch

1 month ago 1 0 1 0
Advertisement

why it was a bad idea?

2 months ago 3 0 1 0
Preview
AndrΓ© Breia – Freelance Developer Full-stack developer specializing in Laravel, Vue/React, and TailwindCSS. Helping businesses build fast, reliable web applications.

I was recently laid off.

Now looking for freelance opportunities from March.

Full-stack web development with any stack in the Laravel ecosystem – Laravel, Vue, React, Inertia, Livewire.

Reach out if you have a project in mind -> andrebreia.dev

2 months ago 4 6 0 2

I... have been laid off from Laracasts. 😭

Pretty bummed out, it was a fun gig.

I'm looking for a new opportunity! β™₯️

3 months ago 4 1 5 0
<form action="/upload" method="POST">
    <file-pond>
        <label for="my-file">Drop files here, or <u>browse</u></label>
        <input id="my-file" type="file" name="files" required />
    </file-pond>

    <button type="submit">Upload</button>
</form>

<script type="module">
    import { defineFilePond } from 'filepond';
    import { locale } from 'filepond/locales/en-gb.js';

    const elements = defineFilePond({
        locale,
    });
</script>

<form action="/upload" method="POST"> <file-pond> <label for="my-file">Drop files here, or <u>browse</u></label> <input id="my-file" type="file" name="files" required /> </file-pond> <button type="submit">Upload</button> </form> <script type="module"> import { defineFilePond } from 'filepond'; import { locale } from 'filepond/locales/en-gb.js'; const elements = defineFilePond({ locale, }); </script>

After 3 years of development I finally published the first alpha version of FilePond v5!

<file-pond> is now a full blown custom element, it implements ElementInternals, can be styled with CSS Custom Properties, and can be fully customised with templates and extensions! πŸŽ‰

🚧 v5.filepond.com

4 months ago 31 8 2 0
Post image

Laravel queue tip πŸ‘‡
Handle model relationships explicitly in jobs to keep payloads small, avoid unexpected queries, and make jobs more predictable 🧠

4 months ago 6 2 1 0

how did this genocide supporter got into my timeline, time to cleanse my timeline

4 months ago 4 0 0 0
Preview
Laravel's Route "Model" Binding | ollieread - PHP and Laravel expert One of Laravel's arguably most used features has to be route model binding, where a model instance with its data will be resolved based on a route parameter. But did you know that this functionality i...

Ever wanted to know how to make your custom classes work with implicit route bindings in #laravel? Without them being models? Or explicitly bound? Or are you just curious about how it all works?

Check out my latest article!

ollieread.com/articles/lar...

4 months ago 4 1 0 0
Advertisement

oh yes, oh yes please, hopefully it passes

4 months ago 0 0 0 0
Telescope - Debug locally like a pro
Telescope - Debug locally like a pro YouTube video by Laravel

Debugging can be a hassle, but it doesn’t have to be!

Let’s celebrate our open-source packages this December, and today we explore how Laravel Telescope makes local debugging a breeze.

youtu.be/ribLN3pRyQc

4 months ago 9 2 0 0
Post image

Previously we saw in Laravel 12.40.0 that queues got pause() & resume(). 🀞

In 12.40.2 it goes further with pauseFor(), pause a queue for a TTL (int seconds, DateTimeInterface, DateInterval) and let it auto resume. πŸ’ͺ

Minor version, big DX win. ⚑

#Laravel #PHP #Queue

4 months ago 4 1 0 1
Post image

Testing in Laravel 12.28 just got faster. πŸ§ͺ

You can now cache your routes and config once per test run, instead of rebuilding them for every test. πŸ’ͺ

A nice performance boost for apps with lots of routes or heavy config. ⚑

Works in both PHPUnit & Pest.

5 months ago 10 3 1 0

I sometimes have 2 or 3 @zed.dev open without any stress on my machine, wouldn't be possible with vscode.

5 months ago 0 0 1 0
Post image

🚨🚨🚨
Laravel developers, time to do `composer update` as Laravel uses Symfony's http foundation component behind the scenes! 🫑

5 months ago 1 1 0 0
Preview
Composer 2.9 Release We are pleased to announce the release of Composer 2.9.0, bringing improvements to security, repository management from the CLI, and lots more. Automatic Security Blocking Composer now automaticall...

Composer 2.9 is here! πŸš€ It automatically blocks packages with known vulnerabilities, has a new repository command to manage repos from the CLI, and lots more!

blog.packagist.com/composer-2-9/
#composerphp #phpc #PHP

5 months ago 14 8 0 0
Preview
Decorating Services in Laravel | ollieread - PHP and Laravel expert In this article we're going to look at one of Laravel's hidden and undocumented features, which allows you to decorate services that are resolved through the service container.

New #laravel article released today! This one is all about an undocumented and hidden feature of Laravel, one that lets you easily register decorators for services!

ollieread.com/articles/dec...

5 months ago 4 3 1 0
Advertisement
Mago The Oxidized PHP Toolchain: Blazing fast linter, formatter, and static analyzer for PHP, written in Rust.

Please consider sponsoring @azjezz.bsky.social, who's building Mago, a fast and modern toolchain for PHP written in Rust.

mago.carthage.software

github.com/sponsors/azj...

5 months ago 2 1 1 0

So what is your test strategy for Inertia / React apps?

Inertia endpoint testing + @pestphp browser testing?

Pest browser testing seems like a great fit for these kind of apps but they are a bit slow.

5 months ago 2 1 2 0
Preview
Release v0.98.0 Β· prism-php/prism What's Changed feat(structured): structured output with tools (OpenAI, Gemini, Anthropic) by @sixlive in #713 feat(stream|anthropic): add Anthropic provider tool result handling by @roymckenzie in...

Just tagged Prism v0.98.0 πŸŽ‰

Prism now supports tool calling with structured output for AnthropicAI, OpenAI, and Gemini!

github.com/prism-php/pr...

5 months ago 5 1 1 0

maybe use Auth facade, `Auth::user`

5 months ago 0 0 0 0
Preview
GitHub - duncanmcclean/tether: Link local composer packages to your sandbox for local development. Link local composer packages to your sandbox for local development. - duncanmcclean/tether

Hacked on a utility called Tether at the weekend.

Clone a package down, run Tether, select the package you wanna link and it'll configure a Composer repository & symlink Vite assets. πŸ”—

It's pretty scrappy, but hopefully it's useful to someone!

github.com/duncanmccle...

5 months ago 8 3 2 0

probably, not sure

5 months ago 0 0 0 0
Preview
Learn Laravel - Free Video Courses - Laravel - The PHP Framework For Web Artisans Kickstart your Laravel journey with free mini video courses. Learn PHP fundamentals and Laravel basics through bite-sized lessons and real-world projects.

there is also laravel bootcamp laravel.com/learn

5 months ago 2 0 2 0