@extends('layouts.app') @section('main-content')

Marques PDF Excel

@can('authorize', 'add_brands') Ajouter Une Nouvelle Marque @endcan
@foreach($brands as $brand) @endforeach
Logo Nom Description Statut
{{ $brand->title }}
{{ $brand->summary }}
{{ $brand->status }}
@php $brand->products /* utile pour pouvoir recuperer payment_method dans data-brand dans faire de merge */ @endphp
@can('authorize', 'edit_brands') @endcan @can('authorize', 'delete_brands') @endcan
@if(request()->is('brands') || request()->is('brands/*')) @can('authorize', 'add_brands') @includeIf('brands.create') @endcan @can('authorize', 'edit_brands') @includeIf('brands.edit') @endcan @can('authorize', 'delete_brands') @includeIf('brands.delete') @endcan @endif @endsection @push('scripts') @endpush