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'))) !!} </divMy 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"));
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community