Skip to content

Conversation

tarikmanoar
Copy link
Contributor

New Features Added

1. Laravel Pulse - Performance Monitoring

composer require laravel/pulse && php artisan pulse:install

Laravel Pulse is the new application performance monitoring tool that provides real-time insights into your application's performance.

2. Laravel Herd - Local Development Environment

herd start && herd link

Laravel Herd offers a native macOS Laravel development environment that's blazing fast and requires minimal configuration.

3. Laravel Prompts - Interactive CLI

use function Laravel\Prompts\{text, select, confirm};

$name = text('What is your name?');
$role = select('What is your role?', ['admin', 'user']);
$confirmed = confirm('Do you wish to continue?');

Laravel Prompts provides beautiful, user-friendly forms for command-line applications with validation and error handling.

4. Enhanced Queue Monitoring

php artisan queue:monitor && php artisan queue:retry all

Improved queue monitoring capabilities with better visibility into job processing and enhanced retry mechanisms.

5. Model Factory State and Sequence

User::factory()->state(['role' => 'admin'])->sequence(
    ['name' => 'John'],
    ['name' => 'Jane']
)->count(2)->create();

Enhanced model factory functionality with state management and sequence generation for more flexible test data creation.

Copy link

netlify bot commented Sep 29, 2025

Deploy Preview for devsonket failed.

Built without sensitive environment variables

Name Link
🔨 Latest commit 09dee70
🔍 Latest deploy log https://app.netlify.com/projects/devsonket/deploys/68da2dd524beee0008c9d2b6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants