I need build forms in Laravel Blade. I am very beginner in Laravel. I use in my project Laravel 7. I found component: https://www.bgaze.fr/bootstrap-formv It’s ok? I want build this form in …
Tag: laravel
Put data in the method (addItem) using foreach
Code i tried but it display 1 value. I want to use addItem to insert more data and display it on my invoice pdf. I can grab all my data using eloquent but dont know how to insert into the class given. …
Error Call to a member function attach() on null
I want to create tag system but I have an error “Error Call to a member function attach() on null “. Look at my code Relationship: Job.php public function services(){ $this->…
Laravel Solution for “Allowed memory size of 134217728 bytes exhausted” Error in Storage::append()
I implemented a code with Laravel to handle chunk uploading, which can be seen below. // if total size equals length of file we have gathered all patch files if ($size == $length) { // write …
Laravel morph table with morph field id size larger than one
I have a personal access token table with the following structure: public function up() { Schema::create(‘personal_access_tokens’, function (Blueprint $table) { $table->bigIncrements(‘…
Laravel page redirection issue
Hi I am laravel beginner and having problem during page navigation. http://localhost/mylaravel/public/index In index page I have few items and below href to see the details of that item based on …
ErrorException (E_NOTICE) Array to string conversion in Laravel
I am presenting this error: ErrorException (E_NOTICE) Array to string conversion This is the view from where I am sending the data from the inputs.
@foreach ($candidates as $…
Laravel Validation Request, how to handle validation on update?
First of all I love the way that validation is going through, can now easily use public function authorize(Authenticator $auth) { return $auth->user()->hasRole(‘administrator’); } hat’s …
Laravel malformed UTF-8 characters, possibly incorrectly encoded using image intervention
I have a laravel project that has a image upload. I used image intervention library for uploading. The problem is i got a 500 error and saying Malformed UTF-8 characters, possibly incorrectly encoded. …
SQLSTATE[23000]: Integrity constraint violation: 1048 Column ‘feature_item’ & ”status’ cannot be null
in my form when i checked the checkedbox there is no error .but when i don’t want to check the checkedbox, I am getting the error SQLSTATE[23000]: 1048 Column ‘feature_item’ & ”status’ cannot be null. 1.my products table:- 2.my product.blade.php This is my form 3.my ProductsC…