@extends('layouts.backend.app') @section('head') @include('layouts.backend.partials.headersection',['title'=>'Pages List']) @endsection @section('content')
{{ __('Title') }} | {{ __('Url') }} | {{ __('Status') }} | {{ __('Created At') }} | {{ __('Action') }} | |
---|---|---|---|---|---|
{{ $row->title }} | {{ url('/page',$row->slug) }} | @if($row->status == 1){{ __('Active') }} | @endif @if($row->status == 0){{ __('Inactive') }} | @endif{{ date('d-m-Y', strtotime($row->created_at)) }} |
|