Monday, September 26, 2022
Remote Connection with cpanel using Vs code
Saturday, September 10, 2022
Light Bootstrap Dashboard PRO Using Vue
Light Bootstrap Dashboard PRO Using Vue
Short Description and Usage
Light Bootstrap Dashboard PRO is a beautiful resource built over Bootstrap to allow you to create powerful and beautiful dashboards. It redesigned all the usual components in Bootstrap to make it look flat, minimalist and easy to use.
Using the dashboard is very simple, but it does require you to understand basic JavaScript functions. To get the desired effect you will need to integrate JS plugins that take a little bit more effort. Down below we list all the files you need to include inside the application to get going. In the elements page, you can how each element if called and used.
Follow the Documentation
If you Want to Download Click Here
Sunday, August 7, 2022
Deploy project in 000webhost.com website
Complete guide line to deploy project in 000webhost.com website.
Uploaded file in the 000webhost while extracting show this error
Ftp_put(): Can’t open that file:To download Unzipper file follow this link or Click Here
https://github.com/ndeet/unzipper
Past this link inside the /App/Providers/AppserviceProvider.php file.
inside the register section.
$this->app->bind('path.public', function() {return base_path('public_html'); });
Inside the Config/App file. Past this code and and past and replace you app key.
Monday, July 18, 2022
বুড়িগঙ্গা নদীর ইতিহাস । History of Buriganga River | Buriganga River
Wednesday, June 15, 2022
Saturday, May 7, 2022
Laravel Fast Project Startup Tricks | লারাভেলে প্রোজেক্ট শুরু করার সহজ কৌশল
Laravel Few Startup
or
Testing Command
It will be life saver which you mayn't know.
//Create New Project
composer create-project laravel/laravel
//Install or Update composer Then Back to back Hit Command
composer install
npm install
npm run dev
// or use it together
npm install && npm run dev
npm run watch
// If you Want to add User Interface(UI)
composer require laravel/ui
// User Authentication Command
php artisan ui:auth
// If you Find any error in Composer install or update then try this
composer install --ignore-platform-reqs
// Generate Key Which is need for every Project
php artisan key:generate
//Migration command
php artisan migrate
// Use this command to migrate which will not struck you for previous action
php artisan migrate:fresh --seed
// Create Storage Link if you use Separate Storage for you file
php artisan storage:link
// You can use this if you need Optimize autoloader without any stuck
composer install --no-dev --optimize-autoloader
// Finally You run this command to browse your project
php artisan serve
// All Command Together if you are an Expert
composer create-project laravel/laravel
composer install
npm install
npm run dev
npm install && npm run dev
npm run watch
composer require laravel/ui
php artisan ui:auth
composer install --ignore-platform-reqs
php artisan key:generate
php artisan migrate
php artisan migrate:fresh --seed
php artisan storage:link
composer install --no-dev --optimize-autoloader
php artisan serve
Collected by MD AL AMIN (B.sc in Pharmacy) [contempt by Tania]