Welcome to the Tech Info section of X-Stream Info! Explore insightful articles, tutorials, and guides on cutting-edge technology trends and tools. From mastering platforms like Salesforce, WordPress, and PHP to understanding MySQL databases, domain registration, and hosting solutions, this is your ultimate resource hub.
Whether you’re a tech enthusiast, developer, or entrepreneur, our curated content will help you stay updated and make informed decisions. Dive into the world of innovation and take your tech knowledge to the next level!
Google has announced that it’s disabling the Less Secure Apps feature on some Google accounts from May 30th, 2022.If you’re using Gmail SMTP details with our Other SMTP mailer, you may…
Step 1 : Install Laravel 8first of all we need to get fresh Laravel 8 version application using bellow command, So open your terminal OR command prompt and run bellow…
Controller Using Artisan CommandCreate a Simple ControllerCreate a Resource ControllerCreate a Resource Controller with ModelRoutesCreate Simple RoutesCreate Resource RoutesAPI Controller and Routes1:- Controller Using Artisan CommandNow, we will show you…
This article will show you how to use cPanel's file manager to force redirect all traffic coming over https:// to http:// via your .htaccessRewriteEngine OnRewriteCond %{HTTPS} onRewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]==========1.…
Disable Apache directory listing using .htaccessIf you don't have administrator access to the system or want to manage directory listing on a per-directory basis easily, you can use the above Options…
This article helps you to create a custom helper function in Laravel. You may have noticed some functions in Larave do not need to import the classes, and it’s not…
Step 1: Create Global File For Flash MessageIn first step we will create new blade file flash-message.blade.php. In this file we will write code of bootstrap alert and check which messages…
Laravel 5.4 made a change to the default database character set, and it’s now utf8mb4 which includes support for storing emojis. This only affects new applications and as long as you are…
First you should create one migration file for your table like:public function up() { Schema::create('test', function (Blueprint $table) { $table->increments('id'); $table->string('fname',255); $table->string('lname',255); $table->rememberToken(); $table->timestamps(); }); }php artisan migrate --path='databasemigrations2022_03_29_062120_file_name.php'
Artisanclear-compiledRemove the compiled class filedownPut the application into maintenance modeenvDisplay the current framework environmenthelpDisplays help for a commandinspireDisplay an inspiring quotelistLists commandsmigrateRun the database migrationsoptimizeOptimize the framework for better performance…