@extends('admin::layouts.master') @section('title','E-SHOP || Brand Page') @section('content')
Brand List
Add bundle
@if(count($bundles)>0) @foreach($bundles as $bundle) @endforeach
@lang('partials.s_n') @lang('partials.name') @lang('partials.description') @lang('partials.price') @lang('partials.product') @lang('partials.action')
@lang('partials.s_n') @lang('partials.name') @lang('partials.description') @lang('partials.price') @lang('partials.product') @lang('partials.action')
{{$bundle->id}} {{$bundle->name}} {{$bundle->description}} {{$bundle->price}} @foreach($bundle->products as $product) {{ $product->title }}, @endforeach
@csrf @method('delete')
@else
@lang('partials.no_records_found')
@endif
@endsection