https://github.com/eliyas5044/myblog
Laravel 5.4 blog example project with good practices
https://github.com/eliyas5044/myblog
Last synced: 3 months ago
JSON representation
Laravel 5.4 blog example project with good practices
- Host: GitHub
- URL: https://github.com/eliyas5044/myblog
- Owner: eliyas5044
- License: mit
- Created: 2017-04-01T03:50:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-20T15:11:53.000Z (about 8 years ago)
- Last Synced: 2025-01-14T04:28:06.874Z (5 months ago)
- Language: PHP
- Homepage:
- Size: 7.13 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Personal Blog Site
This Project will cover creating a very simple blog. It will only consist of posts. The front-end will only be some pages, an index page to list all posts and a view page to view a post.There will be a backend control panel for managing posts and admins, this guide will also include a user authentication system to login administrators.
## Features
- Laravel 5.4
- PHP >= 5.6.4
- Tokenizer PHP Extension
- XML PHP Extension
- Themes: Bootstrap
- MySql
- Keyboard support## Installation
```
1. git clone https://github.com/mdshohelrana/myblog.git
2. cd myblog
3. composer install
4. npm install or yarn
5. copy .env.example .env6. Create Database
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=myblog
DB_USERNAME=root
DB_PASSWORD=secret7. Artisan Commands
php artisan key:generate
php artisan migrate
php artisan db:seed8. NPM Run '*'
npm run9. PHPUnit
phpunit```
## Contributors
[
](https://github.com/mdshohelrana) [
](https://github.com/eliyas5044)