Muhammad Muazzam
Muhammad Muazzam
#### What Version? > Run `composer show khill/lavacharts` if you don't know #### Issue I am having issue of lava object undefined in blade file for ajax call, however this...
I have followed all guidelines in document and created new route in web.php inside middleware groups but no translation is being done at any page of the website. **More info:**...
``` public function store(FormBuilder $formBuilder) { $form = $formBuilder->create(\App\Forms\JobPosting::class); if (!$form->isValid()) { return redirect()->back()->withErrors($form->getErrors())->withInput(); } else $JobTitle = $form->JobTitle; $JobDetail = $form->Jobdetail; DB::table('jobpost')->insert( array( 'userid' => Auth::id(), 'jobtitle' => $JobTitle...
Getting error: ``` TypeError: Cannot read properties of undefined (reading '_c') at Proxy.ModelSelectvue_type_template_id_828ed82c_render (ModelSelect.vue?3da4:1:66) at renderComponentRoot (runtime-core.esm-bundler.js:890:44) at ReactiveEffect.componentUpdateFn [as fn] (runtime-core.esm-bundler.js:5602:57) at ReactiveEffect.run (reactivity.esm-bundler.js:185:25) at instance.update (runtime-core.esm-bundler.js:5716:56) at setupRenderEffect...
I am getting following error > App\Traits\HasCompositeKey::setKeysForSaveQueryMissing part of the primary key: destination_id Model: ``` namespace App\Models; use App\Traits\HasCompositeKey; use Illuminate\Database\Eloquent\Model; class Commission extends Model { use HasCompositeKey; protected $table...
After chaning php_serial at line 113 ```
I am building a shopify app using Laravel signifly pacakge and by using that I have write following code to get access token: ``` https://{$shopDomain}/admin/oauth/authorize?client_id=" . env('SHOPIFY_API_KEY') . "&scope=read_products,write_products&redirect_uri=" ....