@extends('admin.layouts.master-soyuz') @section('title',__('All Pages | ')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Pages') }} @endslot @slot('menu1') {{ __("Pages") }} @endslot @slot('button')
@can('pages.create') {{ __('Add Page') }} @endcan
@endslot ​ @endcomponent
{{ __('Pages') }}
@foreach($pages as $key => $page) @endforeach
{{ __('ID') }} {{ __('Page Name') }} {{ __('Description') }} {{ __('Slug') }} {{ __('Status') }} {{ __('Action') }}
{{ $key + 1 }} {{$page->name}} {{substr(strip_tags($page->des), 0, 70)}}{{strlen(strip_tags($page->des))>70 ? '...' : ""}} {{$page->slug}}
{{ csrf_field() }}
@endsection