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

Marques PDF Excel

@can('authorize', 'add_brands') Ajouter Une Nouvelle Marque @endcan
@foreach ($brands as $brand) @endforeach
Logo Nom Statut
{{ $brand->title }}
{{ $brand->status }}
@php $brand->products @endphp
@can('authorize', 'edit_brands') @endcan @can('authorize', 'delete_brands') @endcan
@if (request()->is('brands') || request()->is('brands/*')) @can('authorize', 'add_brands') @includeIf('backend.brands.create') @endcan @can('authorize', 'edit_brands') @includeIf('backend.brands.edit') @endcan @can('authorize', 'delete_brands') @includeIf('backend.brands.delete') @endcan @endif @endsection @push('scripts') @endpush