@extends('admin.layout.app') @section('title','News') @section('js') @endsection @section('button') Add @endsection @section('content')
@foreach ($newss as $news) @if ($news->status == 1) @else @endif @endforeach
Title Category Stauts Created At Action
{{ $news->title }} {{ $news->news_category->name }}{{ $news->created_at->format('d-m-Y H:i:s') }}
@endsection