Looking to hire Laravel developers? Try LaraJobs
laravel-benefit
A Laravel package providing a translatable Benefit model, powered by spatie/laravel-translatable
17
laravel-testimonial
A Laravel package for managing testimonials with translatable content
15
laravel-how-it-works
A Laravel package for managing 'how it works' steps with translatable titles and descriptions
20
laravel-faq
A Laravel package for managing FAQs with translatable questions, answers, and categories
13
laravel-favicon
This Laravel package serves a favicon.ico route, a browserconfig.xml for Windows tiles, and Apple/PNG touch icon head links from config-driven, Vite-resolved icon assets.
91
laravel-short-url
A Laravel package for creating and redirecting short URLs, with caching and an extensible redirect pipeline.
183
laravel-erp
A native, framework-agnostic ERP core in pure Laravel (models, migrations, services) — 14 business domains: core, accounting, stock, selling, buying, manufacturing, assets, subcontracting, crm, projects, support, quality, maintenance, hr.
9
laravel-cms
Laravel CMS — pages, posts, categories, tags, comments, revisions, SEO metadata, media library and navigation menus. Backend-only: models, migrations, config, contracts. Admin UI is provided by the separate filament-cms package.
37
laravel-livewire-wizard
Build multi-step wizards using Livewire 3.
69
laravel-newsletter
Compose, schedule and send double opt-in email newsletters with open/click tracking for Laravel applications.
32
laravel-queue-management
Manage Laravel's database queue tables (jobs, failed_jobs, job_batches) through models and a service layer.
14
laravel-teams
A Laravel package that adds Teams, memberships, and team invitations with multi-tenancy support to your application.
29
laravel-webhooks
Framework-agnostic outgoing webhooks for Laravel: dispatch HTTP webhooks on Eloquent model events with signing, logging and queue support.
30
laravel-webhook-signatures
Verificação centralizada e fail-closed de assinaturas de webhooks de provedores de email/serviços (Mailgun, SendGrid, Postmark, Resend e AWS SNS/SES) para aplicações Laravel.
95
laravel-zero-json-config
Base JSON configuration service for CLIs, with scope strategies (global, per-repo, per-project), get/set/all and 0600 writes.
282
laravel-zero-api-client
Reusable base REST HTTP client for Laravel Zero CLIs: get/post/put/delete, pagination, Basic/Bearer auth and consistent API error handling.
138
laravel-zero-credentials
Reusable base for storing CLI authentication credentials locally in JSON (~/.<app>/config.json or XDG), with 0600 permissions and a typed credentials contract.
138
laravel-zero-console
Reusable traits for Laravel Zero commands: output formatting (tables, state colorization, dates), standardized API error handling, and cwd/argument path resolution.
397
laravel-zero-git
Detect the current repository from the git remote: parse SSH/HTTPS remote URLs into host/owner/repo and build a stable slug, used by CLIs that auto-detect their workspace/repo.
146
laravel-zero-self-update
Reusable self-update service and base command for Laravel Zero CLIs distributed as a PHAR via GitHub Releases.
613
laravel-zero-support
Reusable base utilities for Laravel Zero CLIs: cross-OS home/config directory resolution, opening URLs in the default browser, and secure JSON writing.
158
laravel-discord-logger
Send Laravel logs to Discord with deduplication, configurable error grouping, rate limiting, async delivery and a graceful no-op when the webhook URL is missing.
753
laravel-topic-normalizer
A tiny Laravel helper that merges raw topic/keyword lists (GitHub topics, composer.json + package.json keywords, Packagist keywords, …) into one slugged, deduplicated, length-filtered and capped list.
56
laravel-favicon-proxy
A Laravel package that proxies and server-side caches website favicons (Google S2 by default) behind a same-origin route, so visitors' browsers never hit the third-party favicon service. Validates the upstream content-type, sends nosniff, negative-caches failures and falls back to a transparent pixel.
56
laravel-pwa-service-worker
A Laravel package that serves a PWA service worker at /sw.js from a Blade template whose cache version tracks the Vite build manifest hash. Ships precache + cache-first (hashed assets), network-first (navigations) and stale-while-revalidate (everything else) strategies with an offline fallback, all configurable.
138
laravel-npm-readme
A Laravel package that fetches an npm package's README from the registry document, renders the markdown and caches the resulting HTML. The default renderer strips raw HTML; provide your own renderer callable (and sanitize) to keep it. Rendered HTML is untrusted — sanitize it before display.
71
laravel-github-readme
A Laravel package that fetches, renders and disk-caches GitHub repository READMEs. It uses conditional ETag requests with a short freshness window, reuses cached HTML on 304 responses, falls back to stale content on errors, and rewrites relative assets/links to absolute GitHub URLs. Rendered HTML is untrusted — sanitize it before display.
82
laravel-pwa-favicon
This Laravel package serves a spec-shaped PWA `manifest.json` (with Android density icons, a 512px master icon, and a maskable variant) on top of jeffersongoncalves/laravel-favicon's favicon.ico, browserconfig.xml, and Apple touch icon head links. It turns any Laravel application into an installable Progressive Web App with sensible, publishable defaults.
927
laravel-page-cache
This Laravel package provides a full-page response cache middleware for stateless public GET pages. It caches 200 responses keyed by a version token, locale, and theme cookie, skips authenticated requests, exposes an X-Page-Cache HIT/MISS header, and offers a static flush() helper to invalidate every cached page at once.
86
laravel-ssrf-guard
A Laravel package that protects outbound HTTP requests from SSRF (Server-Side Request Forgery): it validates that a URL's host resolves only to public IPs (denying private, reserved, loopback and link-local ranges by default), pins the connection to the validated IP to close the DNS-rebinding TOCTOU window, and performs safe GET requests that re-validate every redirect hop.
133
laravel-github-contributions
Fetch the GitHub contribution calendar for any login as a flat 0-4 heatmap-cell array, ready to render your own contribution heatmap.
86
laravel-github-client
A lightweight GitHub REST API client for Laravel with tri-state repository status detection and built-in rate-limit handling.
86
laravel-locale-cookie
A Laravel middleware that resolves the application locale from a cookie, validating the requested value against a configurable list of supported locales and falling back to a sensible default when the cookie is missing or unknown. Cookie name, supported locales, and fallback locale are all driven by config.
82
laravel-security-headers
This Laravel package stamps a configurable set of baseline security headers (X-Content-Type-Options, X-Frame-Options, Referrer-Policy, Permissions-Policy, Content-Security-Policy, Cross-Origin-Opener-Policy, X-Permitted-Cross-Domain-Policies and HSTS) onto your HTTP responses via a single middleware. Every header value and the full CSP directive map are driven by config, so you can tune or disable each one without touching code.
87
laravel-markdown
A shared CommonMark renderer for Laravel with GitHub Flavored Markdown, optional heading permalinks, and server-side syntax highlighting (class-based tokens) via tempest/highlight. Safe by default: raw HTML is escaped unless you opt in to html_input=allow for trusted content. Requires PHP 8.4 because the syntax highlighter tempest/highlight requires it from 2.26 onward.
86
laravel-html-sanitizer
This Laravel package provides a simple wrapper around the Symfony HTML Sanitizer to safely clean untrusted HTML. It strips scripts, inline event handlers, and Alpine attributes while keeping the presentational subset (headings, lists, tables, code blocks, images, links) that rendered Markdown and READMEs need. The package is easy to install and configure, seamlessly integrating with your existing Laravel application.
87
laravel-oidc
OpenID Connect for Laravel via a custom Socialite driver. Multi-tenant ready.
428
laravel-mail
Complete email management for Laravel: logging, database templates with translation, delivery tracking via webhooks (SES, SendGrid, Postmark, Mailgun, Resend), preview, resend, and analytics.
1 187
laravel-metrics-matomo
Laravel package to interact with Matomo Analytics Reporting API - fetch visits, pageviews, referrers, devices, and generate custom reports
34
laravel-metrics-fathom
Laravel package to interact with Fathom Analytics API - fetch pageviews, visitors, events, and generate custom reports
36
laravel-github-stats
Self-hosted Laravel package that serves dynamic SVG cards with your GitHub statistics. Replace unreliable third-party services with your own.
50
laravel-mixpanel
This Laravel package seamlessly integrates Mixpanel analytics into your Blade templates. Easily track user interactions and product usage directly within your Laravel application using the Mixpanel JavaScript SDK, with all configuration managed via database settings.
38
laravel-knowledge-base
A Laravel package for building knowledge bases with articles, categories, versioning, and feedback
394
laravel-satis
A Laravel package for managing private Composer repositories with Satis
744
laravel-service-desk
Complete Service Desk package for Laravel with Tickets, SLA, Knowledge Base, and Service Catalog
692
laravel-help-desk
A comprehensive help desk and ticket management system for Laravel applications with email integration.
3 219
laravel-fake-cartoons
This Laravel package provides a Faker provider to generate fictional cartoon company names. Perfect for seeding your database with fun and recognizable company names from popular cartoons and animated series.
2
laravel-pixel
This Laravel package offers a straightforward way to integrate Meta (Facebook) Pixel into your application. By configuring your Pixel ID, you can effortlessly track user interactions, page views, conversions, and other valuable events on your website. This helps you gather insights into your audience behavior and optimize your advertising campaigns. The package simplifies the process of adding the Pixel script to your Blade templates, enabling seamless analytics collection with minimal setup.
1 712
laravel-gtag
This Laravel package provides a straightforward integration of Google Analytics using Gtag into your Blade templates. It enables you to easily track website visits and user engagement, offering valuable insights into your site's performance. With minimal setup, you can leverage Gtag's powerful analytics features to better understand your audience and improve your website's effectiveness.
1 806
laravel-gtm
This plugin seamlessly integrates Google Tag Manager (GTM) into your website, enabling streamlined management and deployment of marketing tags, analytics, and tracking pixels. With easy-to-implement script inclusion and customizable options, it simplifies the process of monitoring user interactions and gathering valuable insights without altering your site's core code. Perfect for marketers and developers looking to enhance their tracking capabilities with minimal effort.
2 964