zYxNiRV's avatar

zYxNiRV liked a comment+100 XP

2mos ago

Great questions! Laravel's official certification (the "Laravel Certified Developer" exam) mainly covers the fundamentals: Routing, Middleware, Controllers, Requests, Responses, Validation, Eloquent ORM, Blade, Security, Testing, and real-world scenarios.

High-quality resources:

Focus most on Eloquent ORM, authentication, testing, and common app patterns (queues, events, service containers). Building a few CRUD projects yourself is the best way to internalize the concepts. Good luck—may your tests always pass!

zYxNiRV's avatar

zYxNiRV wrote a reply+100 XP

2mos ago

Thanks bro it clear my mind.

zYxNiRV's avatar

zYxNiRV liked a comment+100 XP

2mos ago

In my near-15 years of working with Laravel, and working in Laravel-focused roles, not once have I been asked if I’m “certified”.

These third-party, unofficial certificates are nothing more than a way for the vendors to make money. They’re not worth the paper they’re printed on (if you were to print it out) if no employer gives a crap about them or uses them to verify a candidate’s competency.

zYxNiRV's avatar

zYxNiRV liked a comment+100 XP

2mos ago

Bro, please read this is from Taylor Otwell the founder of Laravel.

https://laravel.com/blog/is-there-an-official-laravel-certification https://laracasts.com/discuss/channels/general-discussion/my-experience-with-certificationforlaravelcom-a-warning-about-the-laravel-certification-scam-2025 https://laravel-news.com/laravel-certification-program-is-no-longer-official

At the beginning of this year, we discontinued our official partnership with the "Laravel Certification Program".

There is no longer an "official" certification program for Laravel, although Laravel certification exams managed by third-parties still exist and may be created.

The certification was managed by an outside company since its inception.

I haven't been 100% satisfied with the operation of that program lately, which has led to this decision to ensure that all products / services endorsed by Laravel are of the highest quality.

zYxNiRV's avatar

zYxNiRV started a new conversation+100 XP

2mos ago

Hi everyone!

I’ve been thinking about pursuing the Laravel Certification, and I wanted to start a discussion to gather thoughts and recommendations from the community.

My Goal

I want to:

Understand what the Laravel certification exam covers

Find high-quality courses or resources that help prepare for the exam

Know which areas to focus on, especially for real-world application and practical projects

zYxNiRV's avatar

zYxNiRV liked a comment+100 XP

4mos ago

Absolutely awesome to see your enthusiasm for taking Laravel to the next level! Building practical projects is a fantastic way to solidify what you’ve learned and expose yourself to new, advanced features.

Here are some detailed, practical project ideas and suggestions to help you level up your Laravel skills:


1. Multi-Tenant SaaS Application

Why?

  • You’ll master advanced database relationships, authentication, authorization (roles/permissions), API design, events, queues, notifications, and testing–all in one package.

Features to consider:

  • Each tenant (organization/customer) has its own set of users and resources (multi-tenant).
  • Subscription-based payments (integrate Stripe or PayPal).
  • Admin and user dashboards.
  • Real-time notifications (Laravel Echo + Pusher).
  • API endpoints for mobile apps, SPA, etc.
  • Automated invoicing (PDF generation, emailing invoices via queued jobs).
  • Monthly emailed reports with Laravel's scheduled tasks.
  • Comprehensive test coverage.

2. Job Board with Real-Time Features

Why?

  • Combines classic CRUD, file uploads, searching/filtering, full authentication, queues, scheduled jobs, real-time notifications, and API design.

Features to consider:

  • Employers/company dashboard to post and manage jobs.
  • Job seekers can create profiles, upload resumes, and apply to jobs.
  • Implement real-time notifications via broadcasting (Laravel Echo, Pusher).
  • Scheduled tasks: auto-expire jobs after X days.
  • Full-featured API for mobile/SPA.
  • Advanced: Add an admin panel (Laravel Nova or Voyager) for managing the platform.

3. Booking Platform (e.g., for classes, meetings, or services)

Why?

  • Expands on resource booking, calendar integrations, advanced authorization, and real-time updates.

Features to consider:

  • Users can view available slots on a calendar, book, cancel, and reschedule.
  • Providers can manage their schedules.
  • Integrate with an external calendar API.
  • Email notifications (queuing), SMS with Twilio, etc.
  • Blade or Vue for the booking interface.

4. Build a Real-Time Chat Application

Why?

  • Deep dive into WebSockets, event broadcasting, RESTful APIs, user authentication, and more.

Features to consider:

  • One-to-one and/or group chat.
  • Typing indicators, read receipts (WebSockets).
  • File/image uploads.
  • Real-time notifications for online status, messages.
  • Vue.js frontend with Laravel backend (or Blade if you prefer).

5. API-First Project (with a Vue or React Frontend)

Why?

  • Practice Laravel as an API backend, authentication (sanctum/passport), rate limiting, and test coverage.
  • Learn advanced API concepts (versioning, transformers/resources, documentation with Swagger/OpenAPI).

Project ideas:

  • Expense tracker
  • Personal CRM
  • Inventory management

General Tips and Best Practices:

  1. Testing

    • Use PHPUnit for unit tests, Laravel’s feature tests, and HTTP tests.
    • Example:
      public function testUserCanLogin()
      {
          $user = User::factory()->create([
              'password' => bcrypt('secret'),
          ]);
      
          $response = $this->post('/login', [
              'email'    => $user->email,
              'password' => 'secret',
          ]);
      
          $response->assertRedirect('/home');
          $this->assertAuthenticatedAs($user);
      }
      
  2. Queues & Scheduling

    • Example: Send queued emails:
      Mail::to($user)->queue(new WelcomeMail($user));
      
    • Example: Schedule a command in app/Console/Kernel.php
      protected function schedule(Schedule $schedule)
      {
          $schedule->command('emails:send')->daily();
      }
      
  3. API Development

    • Use resources for responses:
      return new UserResource($user);
      
    • Use Laravel Passport or Sanctum for API authentication.
  4. Authentication & Authorization

    • Use Laravel Breeze/Jetstream for quick scaffolding.
    • Implement policies and gates for fine-grained access control.
  5. Real-Time/Notifications

    • Use Laravel Echo and Pusher for events and WebSockets.

Takeaway

Pick a project that excites you, but also feels a bit outside your “comfort zone”—that’s where the best learning happens!

If you want any tips or code examples for a specific feature or want feedback on your project structure and best practices, feel free to ask!

Good luck, and happy coding! 🚀

zYxNiRV's avatar

zYxNiRV started a new conversation+100 XP

4mos ago

Hello Laravel Community!

I’ve recently completed the 30 Days of Laravel tutorial, and it was an amazing learning experience. Now that I feel more comfortable with the basics, I’m eager to level up my skills and apply my knowledge in a real-world project.

I’m looking for some interesting project ideas that could help me improve my Laravel proficiency, especially in areas like:

Advanced database management

Authentication & authorization

API development

Testing (unit, feature, etc.)

Vue.js or Blade templating integration

Task scheduling & queues

Real-time applications (WebSockets, etc.)

The project should ideally challenge me and help me build something that could be useful or practical in a professional environment. I’m interested in learning more about the best practices, design patterns, and Laravel features that aren’t usually covered in beginner tutorials.

Here are a few ideas I’ve considered:

Task Management Application: Build a task or project management system with features like user authentication, role-based access control, due dates, notifications, etc. It could also include a time tracking feature.

Blog with CMS: Create a blogging platform that allows users to write posts, tag them, categorize them, and manage comments. Include image uploads, a rich text editor, and user roles for authors, editors, and admins.

E-commerce Platform: Build a simple e-commerce site that includes product listings, a shopping cart, order management, and payment gateway integration (Stripe, PayPal).

Real-time Chat Application: Create a real-time messaging app with WebSockets or Pusher for instant communication between users. This could be a private chat system or a group chat feature.

Job Board/Job Listing App: Develop a job board where employers can post jobs, and job seekers can apply. Include features like job search, categories, location filters, and resume uploads.

Social Media Clone (Basic Version): Build a simple social media platform where users can post updates, follow other users, and like/comment on posts. You can integrate real-time notifications for activities like likes, comments, and follows.

I’m open to any other ideas or challenges that will push me to learn more advanced Laravel concepts.

I’d appreciate any feedback or suggestions. Thanks in advance!

zYxNiRV's avatar

zYxNiRV liked a comment+100 XP

5mos ago

Hey @JefferyWay, you’re an amazing guitar artist 😂. And btw, the series is amazing—thank you!

zYxNiRV's avatar

zYxNiRV wrote a comment+100 XP

5mos ago

Hey @JefferyWay, you’re an amazing guitar artist 😂. And btw, the series is amazing—thank you!