@extends('admin_panel.adminLayout') @section('content')

Ajouter Categorie

{{csrf_field()}}
@if($errors->any())
    @foreach($errors->all() as $err)
  • {{$err}}
  • @endforeach
@endif

Categories Table

@foreach($catlist as $cat) @endforeach
Catégorie Date Action
{{$cat->name}} {{$cat->created_at}} Edit Delete
@endsection