Author: Webmaster
Conflict Management in Project management
Conflict management Conflict happens on all projects. Projects operate in dynamic environments and face many mutually exclusive constraints including budget, scope, schedule, and quality, which can lead to conflicts. It is not uncommon to want to avoid conflict, but not all conflict is negative. How conflict is handled can either lead to more conflict or…
How to use Data Tables in Laravel 11 project / application
To use data tables in laravel 11 project, below steps are required. To use data tables in laravel project, yajra datatables plugin is used. Below are the steps to use yajra data tables in laravel project. Requirement: Laravel 11 jQuery DataTables v1.10.x Installation: Run the following command in your project to get the latest version…
Composer and other Commands for Laravel Project (Usage Command)
To install all php dependencies if you have not uploaded vendor folder. To install and update Composer: composer install composer update Usage Commands: Migrate Tables => php artisan migrate Seed Database => php artisan db:seed –class=InitDbSeeder Start Server => php artisan serve Watch Server => yarn watch or npm run watch Other Commands #…
Laravel Migration Error: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes
Problem: SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (Connection: mysql, SQL: alter table `users` add unique `users_email_unique`(`email`)) Sloution: According to the Laravel official, it can be solved quietly easy. Update your /app/Providers/AppServiceProvider.php to contain: use Illuminate\Support\Facades\Schema; /** * Bootstrap any application services. * * @return…
Project Documentation Templates
# Project Level Documentation Template 1 Project Initiation Business Case Project Charter PID Document Project Scope 2 Project Planning Gantt Chart SWOT Analysis Action Plan Template 3 Project Execution Execution Template Requirement Tracability Implementation Test Case Template 4 Project Tracking RACI Excel Template GAP Analysis Template Root Cause Analysis RAID Log Excel Execution Tracking 5…
Ram Navami in India – Where and How to Celebrate
Ram Navami is considered to be one of the most auspicious and important festivals celebrated in India. It is celebrated on the Shukla Paksha of Chaitra month according to the Hindu calendar. According to mythological beliefs, on this day, Lord Vishnu was born in the Avatar of Lord Rama in King Dasharatha’s palace. Therefore, Ram…
Project Management Methodology
Definition of a Project A project is defined as a temporary endeavor undertaken to create a unique product or service- PMBOK. A project is considered to be a temporary endeavor with specific goals to accomplish defined objectives. The completion point of the project must be defined and agreed upon by stakeholders during the Initiation of…
How to deploy and run Laravel application on shared hosting
It is possible and very easy to deploy and run Laravel application on shared hosting server Locate the following line: require DIR.’/../vendor/autoload.php’; Modify the path to include the directory where Laravel is installed. For example, if Laravel is in the project directory, you would change the line as follows:require DIR.’/../laravel/vendor/autoload.php’ Locate the following line:require DIR.’/../bootstrap/app.php’;…