Laravel-controller Questions
Ad
How can I add Laravel Crinsane cart data as an order?
In order to create an order from crinsane based cart and associate it to the (authenticated) user, i created order model and
How to update data in Laravel controller?
I am trying to update my template details in the controller. but currently, my code is not working. it is not updating the fields. anyhow if i add
How to send variable from blade to controller without changing the url
In blade i have a list of books. i want to choose a specific book to show its information. and to do so i want to send with href the id of the
How to check whether array elements are empty in Laravel?
I am storing data from a form through an array to mysql database. now i want to alert the user if he missed any field. so how can i alert him?
How to use "for loop" instead of "foreach loop" in Laravel controller?
$client = client::all(); $infos = array(); $counter = 0; $a_name = "ayman"; foreach($client as $cl) { if ($cl->name == $a_name)
pass parameters/data in hyperlink - laravel blade
I am trying to pass data from one page to another via hyperlink. here is url. <a href="{{url('page-name/sometext')}}">click
Class 'app\login' not found in laravel 5.8
I am using laravel 5.8 and have an issue with model class. since model is placed directly in app folder. namespace app; use
Laravel - Error ResetPasswordController not found in route list
I have this error while execute the command php artisan route:list : reflectionexception : class
Laravel Many-To-Many relationship with multiple functions
I thought i was going quite well in developing my laravel skills, but it seems i am stuck and can't find the solution online yet. my
Generate 3 record or none Laravel Controller
I have a problem with a store () in a controller of a form, i am generating 3 records in the same controller, but if the last one fails because i
Ad
Laravel Controller not found
I'm learning laravel and i've tried to create a controller. i'm really new, so, please, elaborate. i've used the following command to
What is the difference between controller types of Laravel?
I found nothing about definitions/differences between resource and plain controllers. what is the difference
update database value on laravel
Does laravel have short cut for $i++; i want to update my database value went seomething happend. on php i could just use sql like
Dynamically Map Routes in Laravel
Are there any solutions to make laravel routes dynamically call the controller and action? i couldn't find anything in the documentation.
Call a Controller method from a Command in Laravel
I have a command that is listening via redis pub/sub. when a publish is received, i want to call a controller method so that i can update the
How to Verify Email Without Asking the User to Login to Laravel
I am developing a laravel application. my application is using laravel built-in auth feature. in the laravel auth when a user registers, a
Use Custom Library in Controller of Laravel
I wanted to use nusoap_client class so decided to add nusoap library to
Laravel 5.6 strange behavior - Laravel doesn't see a controller after I rename it
I have a controller named rankcontroller.php. i rename in userscontroller.php manually when i want to separate some
external classes and PHP files in Laravel - Class not found
I have two php files and i already created a folder called "externalclasses" and added the file to that folder. in my php file, i add this line:
Method break after calling function in same controller
I made a method that handles image. the problem is i want to call that method in my edit method few times because there are 3
Return multiple values in laravel
I'm just new in laravel. i want to know. how to return multiple data/value. public function readitems() { $data1 = data1::all
Ad
Laravel5.6 "Call to a member function delete() on null " , delete a row in table
I want to delete a row from table. the function i used in controller is: public function destroy($id) { $category =
Ad
Blog Categories
Ad