Support the ongoing development of Laravel.io →
Input Views
Last updated 1 year ago.
0

My Error was Property [token_symbol_id] does not exist on this collection instance.

My View

<div class="col-sm-10"> {!! Form::text('token_symbol_id', $IcoCalendar->token_symbol_id, array('placeholder' => '','class' => 'form-control','id'=>'token_symbol_id','required'=>'', 'dir'=>trans('backLang.ltr'))) !!} </div

My controller public function edit($id)

{
 
	 

	 $GeneralWebmasterSections = WebmasterSection::where('status', '=', '1')->orderby('row_no', 'asc')->get();
 $IcoCalendar = Ico::where('token_symbol_id', '!=', '')->get();
	return view("backEnd.icocalendar.edit",
            compact("GeneralWebmasterSections", "WebmasterSection", "Sections","fatherSections","IcoCalendar", "Ico","id","tokensymbolid"));
            

}public function edit($id)

{
 
	 

	 $GeneralWebmasterSections = WebmasterSection::where('status', '=', '1')->orderby('row_no', 'asc')->get();
 $IcoCalendar = Ico::where('token_symbol_id', '!=', '')->get();
	return view("backEnd.icocalendar.edit",
            compact("GeneralWebmasterSections", "WebmasterSection", "Sections","fatherSections","IcoCalendar", "Ico","id","tokensymbolid"));
            

}
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.