Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nostromo76/book
Blog "Book" ,simple site with demonstrating Laravel operating.
https://github.com/nostromo76/book
blog crud laravel-framework
Last synced: 4 days ago
JSON representation
Blog "Book" ,simple site with demonstrating Laravel operating.
- Host: GitHub
- URL: https://github.com/nostromo76/book
- Owner: nostromo76
- Created: 2024-09-04T06:41:05.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-10-15T11:27:17.000Z (about 1 month ago)
- Last Synced: 2024-10-18T13:40:54.005Z (28 days ago)
- Topics: blog, crud, laravel-framework
- Language: Blade
- Homepage:
- Size: 7.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Blog ProjectThis is a simple Laravel blog project to demonstrate basic CRUD operations with a database using Laravel.
## Installation via Herd
[Herd](https://github.com/Philo01/herd) is a command line tool that makes it easy to scaffold a Laravel project. Follow the steps below to install this project using Herd:
1. Install Herd globally on your machine by running the following command:
```
composer global require philo/herd
```2. Run the following command to scaffold the Laravel project:
```
herd new blog-project
```3. cd into the project directory:
```
cd blog-project
```4. Start the Laravel development server:
```
php artisan serve
```5. You can now access the project in your browser at `http://127.0.0.1:8000`
## Installation via Console
Alternatively, you can install the project using the Laravel installer and Composer:
1. Clone the project repository:
```
git clone
```2. cd into the project directory:
```
cd
```3. Install project dependencies using Composer:
```
composer install
```4. Generate a new application key:
```
php artisan key:generate
```5. Start the Laravel development server:
```
php artisan serve
```6. You can now access the project in your browser at `http://127.0.0.1:8000`
That's it! You have successfully installed the Laravel Blog project.