Laravel showing index page instead of loading website

Edit your htaccess file. This alone will redirect your root o the public folder. If you have a lot inside of your htaccess file. Be careful while adding stuff. Ensure you keep a backup before editing and test the addition of the code inside the htaccess file....

Laravel Save Function, update and add with exceptions

Save Function (Update and Add in 1 function based on ID) <?php namespace App\Http\Controllers; use Illuminate\Support\Facades\DB; use Illuminate\Http\Request; class RandomController extends WhateverWhateverController { public function saveTermsAndConditions(Request...

Laravel Raw Query The DB with Prepared Statement

Required Laravel includes use Illuminate\Support\Facades\DB; use Illuminate\Http\Request; Select Query class MySpecialController extends Controller { public function rawQueryFunctionNameSelect(Request $request){ $rawQuery= DB::select( DB::raw( ‘SELECT * FROM...

Pin It on Pinterest