@extends('layouts.app')
@section('title', 'Aliments')
@section('breadcrumb')
Aliments
@endsection
@section('content')
Aliments
@if($canManage)
Ajouter
@endif
| Nom |
Type |
Espèce |
Unite |
Prix unitaire |
Actions |
@forelse($feeds as $feed)
| {{ $feed->name }} |
{{ $feed->type }} |
{{ $feed->species->name ?? 'Toutes' }} |
{{ $feed->unit }} |
{{ $feed->unit_price ? number_format($feed->unit_price, 2) . ' FCFA' : '-' }} |
@if($canManage)
@endif
|
@empty
| Aucun enregistrement. |
@endforelse
@endsection