https://github.com/devzakir/laravel-complete-blog-development
Youtube Series - Laravel Blog Development using Laravel 7 (Complete Project)
https://github.com/devzakir/laravel-complete-blog-development
frontend-screenshot laravel laravel-project open-source tutorial-series youtube youtubetutorial
Last synced: 2 months ago
JSON representation
Youtube Series - Laravel Blog Development using Laravel 7 (Complete Project)
- Host: GitHub
- URL: https://github.com/devzakir/laravel-complete-blog-development
- Owner: devzakir
- Created: 2020-03-22T08:01:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T02:21:21.000Z (over 2 years ago)
- Last Synced: 2025-04-13T05:04:21.457Z (2 months ago)
- Topics: frontend-screenshot, laravel, laravel-project, open-source, tutorial-series, youtube, youtubetutorial
- Language: HTML
- Homepage: https://laravel-blog-bd.herokuapp.com
- Size: 20 MB
- Stars: 66
- Watchers: 3
- Forks: 45
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Complete Blog Development
This is a Blog Development Tutorial Series on Youtube. This project is made by Zakir Hossen for the tutorial Purpose.## Tutorial Link
- [Series Prview Link](https://www.youtube.com/watch?v=CEYYeeM763E&list=PLl4v4A2HI0YixTm5AsoTu-sKxiQti4-r6&index=1&t=1s)
- [Youtube Playlist Link](https://www.youtube.com/playlist?list=PLl4v4A2HI0YixTm5AsoTu-sKxiQti4-r6)## Project Live Link
[Live Link ⇨ ](https://laravel-blog-bd.herokuapp.com/)#### Project Key Matrics
- Laravel v7.0
- Frontend Template [(MiniBlog by Colorlib)](https://colorlib.com/wp/template/miniblog/)
- Admin Template [(Admin LTE 3)](https://adminlte.io/themes/dev/AdminLTE/index.html)#### Frontend Screenshot
#### Backend Screenshot
#### Setup Project
```bash
# clone the repo
git clone https://github.com/devzakir/laravel-complete-blog-development.git laravel-blog# install composer dependency
composer install# create a environment file
cp .env.example .env# set the Application key
php artisan key:generate# comment database query in AppServiceProvider.php like this
// $categories = Category::take(5)->get();
// View::share('categories', $categories);// $setting = Setting::first();
// View::share('setting', $setting);# setup the database credentials and migrate database with seeders
php artisan migrate --seed# enable the database query code in AppServiceProvider.php like this
$categories = Category::take(5)->get();
View::share('categories', $categories);$setting = Setting::first();
View::share('setting', $setting);
```