Salesforce – Certification Path 2023

 Salesforce offers a variety of certifications that validate expertise in various aspects of their platform. Here is a list of Salesforce certifications:Salesforce Certified AdministratorSalesforce Certified Advanced AdministratorSalesforce Certified Sales Cloud…

Salesforce – Important Website Links

Salesforce Here are some important website links related to Salesforce:Salesforce Homepage: https://www.salesforce.com/Salesforce Trailhead: https://trailhead.salesforce.com/Salesforce AppExchange: https://appexchange.salesforce.com/Salesforce Developer Center: https://developer.salesforce.com/Salesforce Help and Training: https://help.salesforce.com/homeSalesforce Trust Status: https://status.salesforce.com/Salesforce Events: https://www.salesforce.com/events/Salesforce Blog: https://www.salesforce.com/blog/Salesforce YouTube…

Update Composer In Ubuntu

 sudo apt-get remove composer -yphp -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"php composer-setup.php --install-dir=/usr/bin --filename=composercomposer self-update

How to get a list of registered route paths in Laravel?

Laravel 6, 7 & 8Put it inside routes/web.php Route::get('routes', function () { $routeCollection = Route::getRoutes(); echo "<table style='width:100%'>"; echo "<tr>"; echo "<td width='10%'><h4>HTTP Method</h4></td>"; echo "<td width='10%'><h4>Route</h4></td>"; echo "<td width='10%'><h4>Name</h4></td>"; echo…

Laravel Migration Error: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes

 Step: 1Update your /app/Providers/AppServiceProvider.php to contain:use IlluminateSupportFacadesSchema; /** * Bootstrap any application services. * * @return void */ public function boot() { Schema::defaultStringLength(191); }Step: 2in AppServiceProvider didn't work. Then editing the database.php file in config folder. Just edit /config/database.php'charset'…