@extends('layouts.app') @section('title', 'Aliments') @section('breadcrumb') @endsection @section('content')

Aliments

@if($canManage) Ajouter @endif
@forelse($feeds as $feed) @empty @endforelse
Nom Type Espèce Unite Prix unitaire Actions
{{ $feed->name }} {{ $feed->type }} {{ $feed->species->name ?? 'Toutes' }} {{ $feed->unit }} {{ $feed->unit_price ? number_format($feed->unit_price, 2) . ' FCFA' : '-' }} @if($canManage)
@csrf @method('DELETE')
@endif
Aucun enregistrement.
@endsection