-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7af0dc9
commit 2bfd9d0
Showing
3 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,9 +83,14 @@ GET | api/posts/{id} | Show Specific Post | |
6. Run migrations by executing `php artisan migrate` , Then Run `php artisan db:seed` if you want use faker database records, | ||
7. Start the project by running `php artisan serve` | ||
|
||
### Demo Account | ||
- AdminURL: http://127.0.0.1:8000/admin | ||
- Email: [email protected] | ||
- Password: password | ||
|
||
## About Me | ||
|
||
Iam a Junior Backend Developer with one year of experience, I specialize in PHP, Laravel, and front-end technologies like TailwindCSS and Livewire. I have expertise in developing REST APIs and working with MySQL databases, and I am familiar with software architecture patterns such as MVC and HMVC. I am committed to producing clean, well-documented code that is easily maintainable, and I enjoy sharing my knowledge through various channels. I am eager to take on new challenges and continue to develop my skills. | ||
Iam a Backend Developer with 2+ year of experience, I specialize in PHP, Laravel, and front-end technologies like TailwindCSS and Livewire. I have expertise in developing REST APIs and working with MySQL databases, and I am familiar with software architecture patterns such as MVC and HMVC. I am committed to producing clean, well-documented code that is easily maintainable, and I enjoy sharing my knowledge through various channels. I am eager to take on new challenges and continue to develop my skills. | ||
|
||
- [LinkedIn](https://www.linkedin.com/in/elgammal/). | ||
- [Youtube](https://www.youtube.com/@yasser.elgammal). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,12 @@ class DatabaseSeeder extends Seeder | |
public function run() | ||
{ | ||
\App\Models\Setting::factory(1)->create(); | ||
\App\Models\User::factory(20)->create(); | ||
\App\Models\User::factory()->create([ | ||
'name' => 'Admin', | ||
'email' => '[email protected]', | ||
'role_id' => 1, | ||
]); | ||
\App\Models\User::factory(19)->create(); | ||
\App\Models\Category::factory(5)->create(); | ||
\App\Models\Post::factory(50)->create(); | ||
\App\Models\Page::factory(10)->create(); | ||
|