@extends('layouts.admin')
@section('title', 'Novinky')
@section('content')
Novinky
- Dashboard
- Novinky
| ID |
Titulní obrázek |
Název |
Perex |
Přidáno |
Akce |
@foreach($articles->get() as $article)
|
{{ $article->id }}
|
@if($article->image)
@endif
|
{{ $article->title }}
|
{{ \Illuminate\Support\Str::limit($article->perex, 100) }}
|
{{ $article->created_at->format('j.n.Y') }}
|
|
@endforeach
@endsection