@extends('admin') @section('content')
Page {!! link_to_route('page.create','+',Null,['class'=>'btn btn-xs btn-primary pull-right']) !!}
@if($result) @foreach($result as $key=>$row) {{--@if($row->child && $row->parent_id==0 && $row->type=='page')--}} {{--@foreach($row->child as $key1=>$childrow)--}} {{--@if($childrow->type=='page')--}} {{----}} {{----}} {{----}} {{----}} {{----}} {{--@endif--}} {{--@endforeach--}} {{--@endif--}} @endforeach
S.N Title Page Link Action
{{$key+1}} {{$row->name}} @if($row->make_home==1)   @endif {{$row->slug}} {!! link_to_route('page.edit',' Edit',$row->id,['class'=>'glyphicon glyphicon-pencil btn btn-xs btn-primary']) !!} @if($row->parent_id==0 && $row->type=='page') {!! link_to_route($row->type.'.destroy',' Delete',$row->id,['data-method'=>'delete','class'=>'glyphicon glyphicon-trash btn btn-xs btn-danger']) !!} @endif {{--@if($row->parent_id==0 && $row->type!='page')--}} {{--{!! link_to_route('page.index','List Child','',['class'=>'glyphicon glyphicon-eye btn btn-xs btn-success']) !!}--}} {{--@endif--}}
{{($key+1).'.'.($key1+1)}}    {{$childrow->name}}--}} {{--{!! link_to_route('page.edit',' Edit',$childrow->id,['class'=>'glyphicon glyphicon-pencil btn btn-xs btn-primary']) !!}--}} {{--{!! link_to_route('page.destroy',' Delete',$childrow->id,['data-method'=>'delete','class'=>'glyphicon glyphicon-trash btn btn-xs btn-danger']) !!}--}} {{--
@endif
@stop