Develop Blog Web with Laravel
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
Project Live Link
Project Key Matrics
- Laravel v7.0
- Frontend Template (MiniBlog by Colorlib)
- Admin Template (Admin LTE 3)
Frontend Screenshot
Backend Screenshot
Setup Project
# 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);
Source Code
To use this app, please view the source code via the link below.
We hope that Develop Blog Web with Laravel article will be useful. Please continue to visit this site to get other latest free application source code info. You can also join the telegram channel or subscribe to email to get the latest updates. Thank You.