Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        

Laravel Logo


Build Status
Total Downloads
Latest Stable Version
License


# Laravel Blog Project

This 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.