Category: Laravel
24
Jun
Get All Records In Laravel
by admin
No Comments
In this Article we will see How to Select all records from table with Laravel and Eloquent. We have taken users table and named controller...
24
Jun
Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) . Class ‘App\Http\Controllers\DB’ Not Found.
by admin
No Comments
“Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) . Class ‘App\Http\Controllers\DB’ Not Found ” error might occoredbecause of use DB; missing in your controller....
24
Jun
Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException Error Fix In Laravel
by admin
No Comments
Here we are giving you solution to fix “Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException” error in Laravel.Please try following things which will...
24
Jun
Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) Class ‘App\Http\Controllers\Redirect’ Not Found
by admin
43 Comments
Suppose you have written Redirect code as follows: public function destroy($id) { $user = User::find($id); $user->delete(); return Redirect::route(‘index’); ...
23
Jun
Add New Column To Existing Table In Laravel Using Migration
by admin
No Comments
Step 1: Run the following command to create a migration file. php artisan make:migration alter_users_table (here users is...
23
Jun
Insert, Edit, Update, View & Delete Records In Laravel For Beginners
by admin
No Comments
This is simply user management.The fields are name, email & phone No. I have not given emphasis on design part. You can customize as per...
23
Jun
ReflectionException Class ClassName Not Found Laravel
by admin
No Comments
While working on a Laravel project i got the error How to fix ReflectionException: Class ClassName Not Found. After creating a controller through command line you may...
23
Jun
How To Seed Database Using Faker Library In Laravel
by admin
No Comments
Here we will create one student table & will insert 1000 dummy records using laravel Faker Factory.It’s really interesting. To this we will create a...
23
Jun
How To Install Laravel Via Composer
by admin
No Comments
Installing laravel via composer is very easy.You can install laravel via composer using following command composer create-project laravel/laravel your-project-name version ex. composer create-project laravel/laravel first-laravel-project...
23
Jun
Connect To MySQL Database In Laravel?
by admin
No Comments
In this post we will provide below steps to connect with Mysql database in Laravel. Step 1: Open Phpmyadmin or any dbms tool you are...