@extends('layouts.admin') @section('content')
DETAILS PRODUIT
@csrf @method('PUT')
@if($errors->has('libelle'))

{{ $errors->first('libelle') }}

@endif

{{ trans('cruds.client.fields.first_name_helper') }}

@if($errors->has('categorie_id'))

{{ $errors->first('categorie_id') }}

@endif

{{ trans('cruds.client.fields.first_name_helper') }}

@if($errors->has('prix'))

{{ $errors->first('prix') }}

@endif

@if($errors->has('prix_1'))

{{ $errors->first('prix_1') }}

@endif

@if($errors->has('prix_2'))

{{ $errors->first('prix_2') }}

@endif

@if($errors->has('prix_CMS'))

{{ $errors->first('prix_CMS') }}

@endif

@if($errors->has('prix_1_CMS'))

{{ $errors->first('prix_1_CMS') }}

@endif

@if($errors->has('prix_2_CMS'))

{{ $errors->first('prix_2_CMS') }}

@endif

@if($errors->has('etat'))

{{ $errors->first('etat') }}

@endif

{{ trans('cruds.client.fields.first_name_helper') }}

@if($errors->has('mini_description'))

{{ $errors->first('mini_description') }}

@endif

@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

Evénement(s)

@foreach($activites as $a) @endforeach
Date Objet Opération Utilisateur Description
{{ $a->date }} {{ $a->objet }} {{ $a->operation }} {{ App\User::find($a->user_id)->name }} {{ $a->description }}
@endsection