@extends('admin_panel.adminLayout') @section('content')
Ajouter Categorie
@if($errors->any())
@foreach($errors->all() as $err)
- {{$err}}
|
@endforeach
@endif
Categories Table
Catégorie
|
Date
|
Action
|
@foreach($catlist as $cat)
{{$cat->name}}
|
{{$cat->created_at}}
|
Edit
Delete
|
@endforeach
@endsection