I developed a website for matches.I have table for leagues and table for statistics .table league has relation one to many with statistics table.
In page statistics I have Form::select
This is the code
<div class="form-group">
<label for="name" class="col-md-3 control-label"><br> هذه الاحصائيه</label>
<div class="col-md-9">
{{ Form::select("toLeague", $leagues, null, ['class' => 'form-control']) }}
</div>
</div>
****User will select league for statistic,when I edit the statistic I want the old value of the league in Form::select****
How to do this in form select? please any one help me