Wallace Maxters

Wallace Maxters @wallacemaxters

About: Full stack Web Developer

Location:
Brazil
Joined:
Feb 6, 2021

Wallace Maxters
articles - 8 total

Filament: Image Color Picker component

Image Color Picker for Filament 3 This library contains a custom form field to pick color...

Learn More 5 0Nov 20 '24

Create a Laravel command to add your queue:work for a project as Systemd service in Linux

In your Laravel Project, create the file stubs/queue.service.stub with follow...

Learn More 0 0Nov 20 '24

Function to mask numbers and strings in PHP

function mask (string $placeholder, string $value, string $char = '#'): string { $template =...

Learn More 2 0Nov 14 '22

How to get Open Graph Protocol information for a website with PHP?

function get_og_tags($url) { $dom = new DOMDocument('1.0', 'UTF-8'); ...

Learn More 3 0Oct 25 '22

Simply way to write PHP output in Javascript console.log

You can simply combine the printf and json_encode function to make this. function console_log($dat...

Learn More 8 0Feb 27 '21

Protect user uploads with Laravel

In the Laravel, you can protect your uploaded files access, restricting by authenticated user, with a...

Learn More 5 1Feb 14 '21

List files from directory with PHP

In PHP, you can list a directory using the class RecursiveDirectoryIterator. View the follow code:...

Learn More 7 0Feb 9 '21

Resolve 404 error on Vue Routes on the Apache

After build of a VueJS application and config to run in Apache, is common return an 404 error when a...

Learn More 6 0Feb 7 '21