@extends('backend.layouts.app') @section('title', __('Open Roles')) @section('content') Open Roles
@foreach ($openRoles as $value) @endforeach
# Title Body Status Published at Action
{{ $loop->iteration }} {{ Str::limit($value->title, 45) }} {!! Str::limit($value->body, 100) !!} @if ($value->isPublish()) Publish @else Draft @endif @if ($value->isPublish()) {{ Carbon\Carbon::parse($value->published_at)->format('d/m/Y') }} @else Null @endif
@method('delete') @csrf
@endsection @push('after-scripts') @endpush