@extends('layouts.admin.master') @section('content')
@if(Session::has('deleted'))
{!! Helper::alert('success', Session::get('deleted'), 'block font-15') !!}
@endif
@if(count($pages) ==0) {!! Helper::empty_table(10) !!} @endif @foreach($pages as $key => $page) @endforeach
# Id Parent Tslt of Slug Title Viewed Status Module
{{ Helper::indexed($pages, $key) }} {{ $page->id }} {{ $page->content_parent }} {{ $page->translate_of }} {{ $page->slug }}
{!! $page->title !!}
{{ $page->viewed }} {{ $page->content_status }}
view edit
{{ method_field('delete') }} {{ csrf_field() }}
@endsection