Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mehmettemizkan/portfolio-with-laravel
Portfolio Website With Laravel 10
https://github.com/mehmettemizkan/portfolio-with-laravel
blade bootstrap breeze css html javascript laravel10 php8 sweetalert toastr-js
Last synced: 4 days ago
JSON representation
Portfolio Website With Laravel 10
- Host: GitHub
- URL: https://github.com/mehmettemizkan/portfolio-with-laravel
- Owner: mehmettemizkan
- Created: 2023-09-08T12:07:06.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-26T15:15:58.000Z (11 months ago)
- Last Synced: 2024-10-12T11:41:22.917Z (about 1 month ago)
- Topics: blade, bootstrap, breeze, css, html, javascript, laravel10, php8, sweetalert, toastr-js
- Language: JavaScript
- Homepage:
- Size: 17.6 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mehmet Temizkan's Portfolio Page
This repo contains the portfolio site I built with laravel.
## Creating A Laravel Project
-
laravel new your-app-name
- Would you like to install a starter kit? -> Laravel Breeze
- Which Breeze stack would you like to install? -> Blade
- Would you like dark mode support? -> Yes
- Which testing framework do you prefer? -> PHPUnit
- Would you like to initialize a Git repository? -> No
- Which database will your application use? -> MySQL
- If you see the following screen, you have achieved a problem-free installation.
## Removing the register part
- There will be no registration in my project. To remove the registration part, I will take the
codes from the route -> auth.php file in the main folder into the comment line.## Create a User
- Open the database -> factories -> UserFactory.php
- Set user's information in the definition function.
- Open the database -> seeders -> DatabaseSeeder.php
- WriteUser::factory(1)-> create();
in the run function.
- Open the terminal in project and write this:php artisan db:seed
- Check your users table in the database. If you see a screen like the one below, you are proceeding correctly.