deed76876 / app_blog

creation of blog with subscription system (Package cashier)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravel 8 My Blog

The purpose of this repository is to show good development practices on Laravel as well as to present cases of use of the framework's features like:

Beside Laravel, this project uses other tools like:

Installation

Setting up your development environment on your local machine :

$ git clone https://github.com/GRkode/app_blog.git
$ cd app_blog
$ cp .env.example .env
$ composer install
$ php artisan key:generate
$ php artisan storage:link
$ php artisan serve

Now you can access the application via http://localhost:8000.

Before starting

You need to run the migrations with the seeds :

$ php artisan migrate --seed

This will create a new user that you can use to sign in :

email: admin@gmail.com
password: password
email: user@gmail.com
password: password

Useful commands

Seeding the database :

$ artisan db:seed

In development environnement, rebuild the database :

$ php artisan migrate:fresh --seed

License

This project is released under the MIT license.

About

creation of blog with subscription system (Package cashier)


Languages

Language:PHP 68.7%Language:Blade 31.0%Language:Shell 0.3%