@extends('dashboard.layouts.app') @section('title', trans('admin.brands.title') . ' - ') @section('speedbar')
@endsection @section('content')
@can('create', 'brands') @lang('admin.add') @endcan
@if (count($brands) == 0) @endif @foreach ($brands as $brand) @endforeach
ID @lang('admin.brands.image') @lang('admin.brands.name') @lang('admin.partners.position') @lang('admin.actions')
@lang('admin.no_data')
{{ $brand->id }} {{ $brand->getName() }} {{ $brand->position }} @can('update', 'brands') @endcan @can('delete', 'brands') @endcan
{{ $brands->links('pagination::bootstrap-4') }}
@endsection