@foreach($dats as $dat)
@foreach($in as $in1)
@if($dat->id < 10 )
{{ $in1->initial}}0{{ $dat->id}} |
@else
{{ $in1->initial}}{{ $dat->id}} |
@endif
@endforeach
{{ $dat->name}} |
@foreach($cs as $de)
@if($dat->id ==$de->id )
{{ $de->type}}
@endif
@endforeach
|
{{ $dat->remark}} |
{!! Form::open(array('route'=>['dat.destroy',$dat->id],'method'=>'DELETE')) !!}
{!! Form::button('',['class'=>'fa fa-trash del','type'=>'submit']) !!}
{!! Form::close() !!}
|
@endforeach