@if(session('success'))
{{ session('success') }}
@endif
@if (count($errors) > 0)
Whoops! Some problems with your input.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
Nom |
categorie |
Date |
Action |
@foreach($articles as $article)
{{$article->nom}}
|
@foreach ($article->categories as $singleTag)
{{ $singleTag->nom }}
@endforeach
|
{{$article->created_at}}
|
|
@endforeach
@include('backend.partials.alert')
@endsection