@extends('layouts.backend.app') @section('head') @include('layouts.backend.partials.headersection',['title'=>'News List']) @endsection @section('content')
@foreach($all_news as $row) @if($row->status == 1) @endif @if($row->status == 0) @endif @endforeach
{{ __('Title') }} {{ __('Status') }} {{ __('Created At') }} {{ __('Action') }}
{{ $row->title }}{{ __('Active') }}{{ __('Inactive') }}{{ date('d-m-Y', strtotime($row->created_at)) }}
{{ $all_news->links('vendor.pagination.bootstrap-4') }}
@endsection @push('js') @endpush