@extends('layouts.admin') @section('styles') @endsection @section('content')

{{ __('King_david') }}

@csrf New Article:
@if (session('success'))
{!! session('success') !!}
@endif @if (session('error'))
{!! session('error') !!}
@endif @if ($errors->has('name')) {{ $errors->first('name') }} @endif @if ($errors->has('type')) {{ $errors->first('type') }} @endif @foreach($king_david as $article) @endforeach
Heading Type url* Published Visible** Created By Action***
{{$article->heading}} {{$article->type}} {{$article->url}} {{$article->updated_at}} @if($article->visible) @else @endif {{$article->createdBy->name}} {{$article->createdBy->surname}}
@csrf
   
{{ $king_david->links() }} * ** Click icon to change visibility: (Visble)    (NOT Visble)
*** Edit Article    Delete Article

NOTES: Delete can not be undone.
@endsection