@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')
{{ __('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}} |
@can('pages.edit')
{{ __("Edit") }}
@endcan
@can('pages.delete')
{{ __("Delete") }}
@endcan
{{ __("DELETE") }}{{ __('Are You Sure ?')}}{{ __('Do you really want to delete')}} {{$page->name}} ? {{ __('This process cannot be undone.')}} |