@extends('layouts.idara.panel') @section('content') @include('backend.partials.import')
@if(session('success'))
{{ session('success') }}
@endif @if (count($errors) > 0)
Whoops! Some problems with your input.

@endif @if (Session::has('message'))
{{ Session::get('message') }}
@endif
Produits
@foreach($articles as $article) @endforeach
Nom categorie Date Action
{{$article->nom}} @foreach ($article->categories as $singleTag) {{ $singleTag->nom }} @endforeach {{$article->created_at}}
@csrf @if($article->etat == 1) etat ? 'checked' : '' }}> @else etat ? 'checked' : '' }}> @endif @if($article->etat == 1) home ? 'checked' : '' }}> @else home ? 'checked' : '' }}> @endif
{{ $articles->links() }}
@include('backend.partials.alert') @endsection