Author: drweb

Today marks the launch of our first free CSS tool here at css3. Imagine you’re strolling through a digital art gallery website, and a mesmerizing sunset in one of the pictures catches your eye. You think, “Wow, those colors would make my website look stunning!” Well, with our Image Color Picker Tool, your wish is its command! 📸 Snap and Extract: Simply upload your favorite image, and watch as Image Color Picker tool works its magic. It’s like having a color-savvy fairy godmother for your website. With a flick of its digital wand, it extracts a palette of colors, providing…

Read More

Ever wish your CEO encouraged you to write more automated tests? Or even just understood their importance? Want to work where clean code isn’t a luxury but a priority?  Our founder and CEO is a developer himself, and our elegant code is the vein that keeps our company healthy and growing. You’ll never have to advocate for the importance of investing in code quality. You can save time (and frustrations) and spend it on doing what matters in a healthy, collaborative environment where your ideas, energy and time are valued.  You’ll be involved in all cycles of software development, including decision-making, so…

Read More

MailerLite is one of the fastest-growing email marketing services. We help more than 1 million businesses around the world stay in touch with their customers. Today, we are a team of more than 160 dreamers, adventurers, and world travelers passionate about what we do and what we believe in. And we are ready for another talented person to join the party.We’re looking for a PHP engineer who will help us implement new features and maintain our flagship product, MailerLite. Join us now! 🚀

Read More

SSH in Laravel can significantly enhance your application’s functionality, allowing for automated remote server management, file transfers, and more. This guide will help you set up and use SSH within a Laravel application, leveraging the phpseclib library. Setting Up the Environment To begin, install the phpseclib library using Composer: composer require phpseclib/phpseclib This will add to the phpseclib library to your Laravel project. Creating a Service Provider Next, create a service provider to manage SSH connections. Run the following Artisan command: php artisan make:provider SSHServiceProvider In the newly created SSHServiceProvider, add the necessary code to bind the phpseclib…

Read More

Laravel is one of the most popular PHP frameworks, known for its elegant syntax, powerful tools, and ease of use. MySQL, a widely-used relational database management system, often complements Laravel in web application development. When working with these two technologies, developers frequently manage data in various ways, including hiding certain database columns from being exposed through the application. This is crucial for maintaining security, reducing data exposure, and ensuring that sensitive information is protected. This article delves into how to handle hidden columns in Laravel with MySQL, including best practices and practical examples. Why Hide Columns in a Database? In…

Read More

Location+/- 4hrs PST TimezoneEmployment TypeFull Time Contract (40hrs/week)Contract Term4 months, March 2025 – June 2025Rate$60-$100/hr CADStackLaravel, Inertia.js, React, Tailwind CSSAbout SpringloadedWe’re a nimble remote team spanning many time zones and continents. We really love shipping software on the web. We built our business around delivering the most value we can to our clients and customers, and as a result all of our business to date has been through referrals. We’re growing because we deliver exceptional results.About the JobWe’re looking for two full-stack developers with React experience to join our team and help us build great software with Laravel. You’ll be…

Read More

Introduction Laraship, a leading Laravel-based eCommerce and multi-tenant platform, has officially been upgraded from Laravel 10 to Laravel 11. This upgrade marks a significant milestone in improving performance and functionality, keeping Laraship at the forefront of modern web development. In this article, we’ll dive into the key features and improvements introduced with Laravel 11 and what they mean for Laraship users. What’s New in Laravel 11? Laravel 11 brings many new features, optimizations, and changes, making it an attractive upgrade for new and existing projects. Some key highlights include: Improved Performance Laravel 11 introduces optimized database query handling, better resource…

Read More

About the Role:We are seeking an experienced Senior Laravel Engineer with a knack for designing high-quality, scalable architectures and leading product development from concept to completion. Shaping engineers work closely with product managers to understand business needs, make critical architectural decisions, and oversee the development process by guiding a team of implementation engineers. If you have a deep understanding of Laravel, experience in making strategic architectural choices, and enjoy mentoring others, we’d love to connect. Key Responsibilities:Lead the architecture and design of complex features, ensuring scalability, security, and performance.Collaborate with Product Managers to translate product requirements into actionable, well-documented technical solutions.Make…

Read More

Sometimes, you want to click a column to refine the results of a table further without going through the filter menu on a Filament table. // Step one: create a filter SelectFilter::make(‘user’) ->relationship(‘user’, ‘name’) ->searchable() // added so all records aren’t loaded initally // Step two: add action to column TextColumn::make(‘user.name’) ->label(‘Owner’) ->action(function ($livewire, $record) { $livewire->tableFilters[‘user’] = [‘value’ => $record->user_id]; })

Read More