PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # 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 ![Frontend Screenshot](public/img/frontend.png) #### Backend Screenshot ![Backend Screenshot](public/img/backend.png) #### 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); ```