Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
What is Laravel and How Laravel Works & Architecture?
What is Laravel? Laravel is a free and open-source PHP web framework created by Taylor Otwell. It is designed to make the development of web applications easier Read More
What is Laravel and What are the Features of Laravel?
Laravel is a popular open-source PHP web application framework used for developing web applications and websites. It follows the Model-View-Controller (MVC) architectural pattern. It is one of Read More
How to return multiple blade file using single function inside same controller and same route
now on main public route I am raturning a method. web.php Route::get(‘/trips’, ‘CategoryController@index’)->name(‘trips’); CategoryController.php
How to other table data to store another table data
This is packages table This is addimages table First let’s go to your Controller file and our function
How get data in Dropdown of multiple role id in Laravel
First let’s go to your Laravel project And add your Blade file And go to your Laravel project And add your Controller file This is Database structure
How to get a Particular aliments of array using slice method in Laravel
array_slice (PHP 4, PHP 5, PHP 7, PHP 8) array_slice — Extract a slice of the array Description array_slice( array $array, int $offset, ?int $length = null, bool $preserve_keys Read More
How take in first and last element of array in Laravel
First let’s go to your Laravel project And add your Controller file This is first Arr $middile= Arr::first($my_cat); This is last Arr $last_cat=Arr::last( $my_cat); This is Refresh Read More
How to concatenate string in Laravel controller
First let’s go to your Laravel project And add your Controller function and Store function And go to your Laravel project And test your Controller function log::info Read More
How to create auto increment id existing table and store in other table in Laravel
First let’s go to your Laravel project And add your Controller function and Store function $Trip->tour_id = $tour_id;
How to get data other project a table with modal source
First let’s go to your Laravel project And create new modal Settings And go to your Laravel project and your controller use app use App\Settings; And go Read More
how to remove html tag in Laravel blade file
First let’s go to your Laravel project Your blade File and this code is html tag with {{ $gallery->Description}} Go to your Laravel project Your blade File Read More
How to remove html tag in API data using Laravel
First let’s go to your Laravel project Your Controller Function and this code add Now is your Result html tag remove Refresh for this link => https://stackoverflow.com/questions/36247382/remove-html-tags-from-strings-on-laravel-blade/36247458
How to change From Name in Laravel Mail Notification
First let’s go to your Laravel project Your database Structure And go to your Laravel project Your Blade file SendMail.php Defied Your Mail and Name Now is Read More
Basic Query in Laravel PHP Framework Advance
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 Read More
How to Add Google reCAPTCHA on Sing Up & Sing in page in Laravel Php framework
First let’s go to your laravel project and run this Command on Git Bash Ya TERMINAL Next step we have to install anhskohbo/no-captcha package for Google reCaptcha code, Read More
Basic Query in Laravel PHP Framework
Basic Database Usage Query 1 => Display total number of row in a table where role id 2 ? Query 2 => Display row detail which is Read More
Why I’m getting ‘Non-static method should not be called statically’ when invoking a method in a Eloquent model?
I don’t know why I am getting this error: This is my blade file method: This is my model: Can you help me? I am trying to Read More