In this tutorial I’m going to solve this error Fatal error: Maximum execution time of 300 seconds exceeded in C:\xampp\phpMyAdmin\libraries\classes\Dbi\DbiMysqli.php on line 199. Whenever you import file in in database then after some processing time its show you have using Maximum execution time of 300 seconds exceeded will be showing this type of error in Read More

Read More

First let’s go to your Laravel project And add your database this field `Permission` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ‘Reject’, And go to your blade file Permission url Ya route defined them checkbox and add button click url: “{{eventmie_url(‘admins/userpermittrip’)}}/” + email, And go to route Route::post(‘/userpermittrip’, ‘Admin\AdminTPController@storeupermission’); Go to your controller and your function Read More

Read More

Laravel Database Queries Query 12=>Show or get recently or last 6 data entered by user Three method : first method $dogs = Package::orderBy(‘id’, ‘desc’)->take(5)->get(); return $dogs; Second Method $dogs = Package::latest()->take(5)->get(); return $dogs; third Method $dogs= Package::orderBy(‘id’, ‘DESC’)->limit(5)->get(); return $dogs; Query 13=>Get all data except skip 4 first data which is added by tour Operator Read More

Read More
Artificial Intelligence