Laravel

Category

12 posts found

19 Apr 2019
0.41K
No Comments

The default Laravel Application is intended to provide a great starting point for both large and small applications, and also for ecommerce development, for ecommerce development company and has become the go-to framework for people all over the world. It has robust technical capabilities, and is a leader on the

Post in

13 Mar 2019
1.36K
No Comments

Before adding your custom functions helper or library to project. Laravel have set most of useful function in helper. Read Laravel’s pre-defined functions in helper https://laravel.com/docs/helpers So let’s start to add custom function library or helper to your project. Create directory helpers in “LaravelProject\app\Http” Create function helper file “func_helper.php” in

Post in

26 Feb 2019
1.71K
No Comments

Laravel treat DateTime Class into his own class library and then its call from Laravel classes. So you have you change it from and just add backslash \ before DateTime class

Post in

14 Jul 2018
3.4K
2 Comments
Laravel 5 upload files to Dropbox free storage

Some of Storage services are not free like amazon s3 or cloud, and I was also wanted to get free storage, I found #Dropbox which is providing 5GB free space. Before starting this tutorial you must have following requirements. Requirements PHP version 7.1 or 7.2 or 7.+ Laravel latest framework

Post in

11 Mar 2018
0.43K
No Comments

This error occurred if your server is running on 5 or less version of PHP, for the fixing that problem you need to contact with your hosting support team or change PHP version from cpanel. Solution: Change your PHP version from Cpanel Select PHP version from cpanel php changing version

Post in

21 Jun 2017
2.41K
No Comments
Laravel custom columns login authentication

Laravel provide a great solution for login authentication, in sometimes we have typically a database table with custom table name  eg: student, customer, employee, and custom login columns eg:student_id, customer_id, employee_id but the default in Laravel authentication only use id, login and password columns. To get install laravel from composer

Post in

7 Jun 2017
2.39K
3 Comments

This is weird thing from #laravel on fresh installation, so everyone wants to remove public from url, there are two different methods. 1. Method is remove public from url in #.htaccess Create .htaccess file on main directory of laravel and put the following code 2. Method is remove public url

Post in

27 May 2017
3.22K
No Comments

Undefined index error occurred when you are using custom login with custom columns default #laravel use password column eg: you have defined column just like entity_password  in database and you have passed in $credential array for auth()->guard(); This is wrong for login auth Just you have to change key from entity_password

Post in

8 Oct 2015
3.11K
No Comments

If hacker needs to get your absolute path they easily can go to any core file by direct access like showed in below, DIRECT ACCESS ANY CORE FILE OF LARAVEL domain.com/app/controllers/HomeController.php laravel-APP-Path/tests/TestCase.php Fatal Error: Class ‘Illuminate\Foundation\Testing\Testcase’ not found in laravel-APP-Path/tests/TestCase.php on line 3 DIRECT ACCESS LARAVEL HOME CONTROLLER domainname.com/laravel-APP-Path/controllers/HomeController.php Fatal Error:

Post in