@extends('layout') @section('content')
@if (\Session::has('success'))

{{ \Session::get('success') }}


@endif

Articoli Add

@foreach($articles as $article) @endforeach
ID Name Category Price Action
{{$article->id}} {{$article->name}} {{$article->category}} € {{ number_format($article->price, 2) }} Edit
@csrf
@endsection