All Projects → milon → laravel-blog

milon / laravel-blog

Licence: other
A simple blog for demonstration purpose with Laravel Framework.

Programming Languages

javascript
184084 projects - #8 most used programming language
PHP
23972 projects - #3 most used programming language
HTML
75241 projects
Vue
7211 projects

Projects that are alternatives of or similar to laravel-blog

laravel-charts
📊 Create a chart in Laravel using Chart.js and AJAX
Stars: ✭ 36 (-58.62%)
Mutual labels:  laravel-blog
laravel-cms
Juzaweb CMS is a Content Management System (CMS) developed based on Laravel Framework and web platform whose sole purpose is to make your development workflow simple again. Project develop by Juzaweb
Stars: ✭ 15 (-82.76%)
Mutual labels:  laravel-blog

Laravel Blog

A simple blog for demonstration purpose. Based on Laravel 7.0

Requirements

  • Laravel 7.0
  • PHP >= 7.2.5
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension
  • Ctype PHP Extension
  • JSON PHP Extension
  • BCMath PHP Extension

Demo

You can try the live demo : http://gentle-everglades-40337.herokuapp.com/

Demo login info

user: [email protected] | password: password

Installation

git clone https://github.com/milon/laravel-blog.git blog
cd blog
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate
php artisan db:seed

If you want dummy data, then run this-

php artisan db:seed --class=DummyDataSeeder

API Endpoints

This projects exposes some API endpoints. You could request those endpoints with the api_token passed as query parameters, like this- /api/tags?api_token=YOUR_API_KEY. You can also pass the token as a Authorization Bearer token. The API key could be obtained from /api/auth/token endpoint. Available endpoints are-

/api/auth/token
/api/auth/reset-password
/api/auth/change-password

/api/tags
/api/categories
/api/users     // only accessible by admin
/api/posts

These endpoints are also available as a Postman collection here.

Author

Feel free to email me, if you have any question.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].