Skip to content

Commit 75cc0d3

Browse files
kamranahmedsegithub-actions[bot]
authored andcommitted
chore: sync content to repo
1 parent b99cdda commit 75cc0d3

File tree

101 files changed

+659
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+659
-105
lines changed

src/data/roadmaps/laravel/content/app@U9EVG_fIFy57WWPwJSXv6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ The `app` directory in a Laravel project houses the core logic of your applicati
44

55
Visit the following resources to learn more:
66

7-
- [@official@App directory](https://laravel.com/docs/12.x/structure#the-root-app-directory)
7+
- [@official@App directory](https://laravel.com/docs/structure#the-root-app-directory)
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
# Artisan Console
22

3-
Artisan is the command-line interface (CLI) included with Laravel. It provides a number of helpful commands that can assist you while building your application. These commands can automate repetitive tasks, generate boilerplate code, interact with your database, and perform other useful functions, ultimately streamlining the development process.
3+
Artisan is the command-line interface (CLI) included with Laravel. It provides a number of helpful commands that can assist you while building your application. These commands can automate repetitive tasks, generate boilerplate code, interact with your database, and perform other useful functions, ultimately streamlining the development process.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@official@Artisan](https://laravel.com/docs/artisan)
8+
- [@article@Laravel - Artisan Console](https://www.tutorialspoint.com/laravel/laravel_artisan_console.htm)
9+
- [@article@Laravel commands: Top Artisan commands to know and how to create them](https://www.hostinger.com/tutorials/laravel-commands)
10+
- [@video@Getting Started with Artisan Commands in Laravel | Learn Laravel The Right Way](https://www.youtube.com/watch?v=gw7O8P0J1jE)
11+
- [@video@Basic Artisan Commands | Laravel For Beginners | Learn Laravel](https://www.youtube.com/watch?v=u5AgUYbEWFE)
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
# Authentication in Laravel
22

3-
Authentication is the process of verifying the identity of a user. It involves confirming that a user is who they claim to be, typically by checking their credentials (like a username and password) against stored records. Laravel provides built-in tools and features to simplify this process, making it easier to secure your application and control access to protected resources.
3+
Authentication is the process of verifying the identity of a user. It involves confirming that a user is who they claim to be, typically by checking their credentials (like a username and password) against stored records. Laravel provides built-in tools and features to simplify this process, making it easier to secure your application and control access to protected resources.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@official@Authentication](https://laravel.com/docs//authentication#main-content)
8+
- [@article@Laravel Authentication: Getting Started and HTTP Auth Tutorial](https://frontegg.com/blog/laravel-authentication)
9+
- [@article@Understanding Laravel Authentication: Best Practices and Tips](http://medium.com/@aiman.asfia/understanding-laravel-authentication-best-practices-and-tips-cf00bcb894a4)
10+
- [@video@Laravel Authentication Tutorial #1 - Intro & Setup](https://www.youtube.com/watch?v=3JBmbQsR0ag)
11+
- [@video@Build Laravel Login & Registration from Scratch](https://www.youtube.com/watch?v=QtKZxNNPT_U)
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
# Authorization
22

3-
Authorization is the process of determining whether a user has permission to access a specific resource or perform a particular action. It verifies if an authenticated user is allowed to do what they are attempting to do within an application. This involves checking the user's roles, permissions, and policies against the requested resource or action.
3+
Authorization is the process of determining whether a user has permission to access a specific resource or perform a particular action. It verifies if an authenticated user is allowed to do what they are attempting to do within an application. This involves checking the user's roles, permissions, and policies against the requested resource or action.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@official@Authorization](https://laravel.com/docs/authorization#main-content)
8+
- [@article@Mastering Laravel Policies: A Complete Guide to Authorization in Laravel](https://medium.com/@zulfikarditya/mastering-laravel-policies-a-complete-guide-to-authorization-in-laravel-991bbdcc6756)
9+
- [@video@Authorization in Laravel: Can You Do That?](https://www.youtube.com/watch?v=NXt5XqyaaNE)
10+
- [@video@06 - User Authorization in Laravel](https://www.youtube.com/watch?v=v7TgKS8BobI)
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
# Basic Controllers
22

3-
Controllers are fundamental building blocks in web applications that handle incoming requests and orchestrate the application's response. They act as intermediaries between the user interface (or API endpoint) and the application's data and logic. A controller receives a request, processes it by interacting with models or other services, and then returns a response, such as a view, JSON data, or a redirect.
3+
Controllers are fundamental building blocks in web applications that handle incoming requests and orchestrate the application's response. They act as intermediaries between the user interface (or API endpoint) and the application's data and logic. A controller receives a request, processes it by interacting with models or other services, and then returns a response, such as a view, JSON data, or a redirect.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@official@Basic Controllers](https://laravel.com/docs/controllers#basic-controllers)
8+
- [@article@Controllers](https://www.tutorialspoint.com/laravel/laravel_controllers.htm)
9+
- [@article@How to Use Controllers in Laravel](https://www.inmotionhosting.com/support/edu/laravel/how-to-use-controllers-in-laravel/)
10+
- [@video@Controllers in Laravel: Detailed explanation for beginners](https://www.youtube.com/watch?v=DZmkzV9SJEI)

src/data/roadmaps/laravel/content/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Routing in Laravel determines how your application responds to client requests.
44

55
Visit the following resources to learn more:
66

7-
- [@official@Basic Routes](https://laravel.com/docs/12.x/routing#basic-routing)
7+
- [@official@Basic Routes](https://laravel.com/docs/routing#basic-routing)
88
- [@article@Laravel Routing Guide – How to Create Route to Call a View](http://cloudways.com/blog/routing-in-laravel/)
99
- [@article@Laravel - Routing](https://www.tutorialspoint.com/laravel/laravel_routing.htm)
1010
- [@video@The Basics of Routing in Laravel | Learn Laravel The Right Way](https://www.youtube.com/watch?v=pP4g0xPq0TQ)
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
# Blade and Livewire Integration
22

3-
Blade is Laravel's templating engine, allowing developers to use simple syntax to create dynamic web pages. Livewire is a full-stack framework for Laravel that enables you to build dynamic interfaces using Laravel and PHP, without writing JavaScript. Combining Blade and Livewire allows you to create interactive and reactive user interfaces with the power and simplicity of Laravel's templating system and the real-time capabilities of Livewire components.
3+
Blade is Laravel's templating engine, allowing developers to use simple syntax to create dynamic web pages. Livewire is a full-stack framework for Laravel that enables you to build dynamic interfaces using Laravel and PHP, without writing JavaScript. Combining Blade and Livewire allows you to create interactive and reactive user interfaces with the power and simplicity of Laravel's templating system and the real-time capabilities of Livewire components.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@official@Supercharging Blade With Livewire](https://laravel.com/docs/blade#supercharging-blade-with-livewire)
8+
- [@official@Livewire](https://livewire.laravel.com/)
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
# Blade Directives
22

3-
Blade directives are shortcuts to common PHP control structures, like `if` statements and loops, within Laravel's Blade templating engine. They provide a cleaner and more readable syntax for embedding PHP logic directly into your HTML views. Instead of writing verbose PHP code, you can use directives like `@if`, `@foreach`, and `@csrf` to control the flow and output of your templates.
3+
Blade directives are shortcuts to common PHP control structures, like `if` statements and loops, within Laravel's Blade templating engine. They provide a cleaner and more readable syntax for embedding PHP logic directly into your HTML views. Instead of writing verbose PHP code, you can use directives like `@if`, `@foreach`, and `@csrf` to control the flow and output of your templates.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@official@Blade Directives](https://laravel.com/docs/blade#blade-directives)
8+
- [@article@What are blade directives?](https://www.educative.io/answers/what-are-blade-directives)
9+
- [@article@Useful Blade Directives](https://laracasts.com/discuss/channels/laravel/useful-blade-directives)
10+
- [@video@Laravel Tutorial for Beginners #4 - Blade Directives](https://www.youtube.com/watch?v=cNE0HIRpeiU)
Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
# Blade Templating
22

3-
Blade is a simple yet powerful templating engine provided with Laravel. It allows you to use plain PHP in your views, but also offers convenient shortcuts and directives for common tasks like displaying data, looping through arrays, and conditional statements. Blade templates are compiled into plain PHP code and cached, meaning they add essentially zero overhead to your application.
3+
Blade is a simple yet powerful templating engine provided with Laravel. It allows you to use plain PHP in your views, but also offers convenient shortcuts and directives for common tasks like displaying data, looping through arrays, and conditional statements. Blade templates are compiled into plain PHP code and cached, meaning they add essentially zero overhead to your application.
4+
5+
Visit the following resources to learn more:
6+
7+
- [@official@Blade Templating](https://laravel.com/docs/blade#main-content)
8+
- [@article@Laravel - Blade Templates](https://www.tutorialspoint.com/laravel/laravel_blade_templates.htm)
9+
- [@article@Laravel Blade Template Engine: A Beginner's Guide](https://dev.to/icornea/laravel-blade-template-engine-a-beginners-guide-54bi)
10+
- [@article@Laravel Blade Basics](https://www.inmotionhosting.com/support/edu/laravel/laravel-blade-basics/)
11+
- [@video@Laravel 12 – Creating Layouts with Blade for Reusable Templates](https://www.youtube.com/watch?v=gZkpUNVFiYE)
12+
- [@video@Blade templates & Layouts | Laravel 10 Tutorial #7](https://www.youtube.com/watch?v=3UhgEsLxmG8)

src/data/roadmaps/laravel/content/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Bootstrap in a Laravel project is the initial point where the framework starts i
44

55
Visit the following resources to learn more:
66

7-
- [@official@The Bootstrap Directory](https://laravel.com/docs/12.x/structure#the-bootstrap-directory)
7+
- [@official@The Bootstrap Directory](https://laravel.com/docs/structure#the-bootstrap-directory)

0 commit comments

Comments
 (0)