@extends('layouts.admin') @section('header', 'Packs') @section('content')
Créer un Pack
@foreach($packs as $pack) @endforeach
Nom Prix Produits inclus Actions
{{ $pack->name }} {{ $pack->price }} MAD
    @foreach($pack->products as $prod)
  • {{ $prod->name }} (x{{ $prod->pivot->quantity }})
  • @endforeach
Modifier
@csrf @method('DELETE')
{{ $packs->links() }}
@endsection