@extends('admin.layout.master') @section('content')

البراندات {{$brands->total()}}

اضافة

@if($brands->count() > 0 ) @foreach($brands as $index => $brand) @endforeach
# الاسم الصورة التحكم
{{$index + 1}} {{$brand->name}} تعديل
{{csrf_field()}} {{method_field('delete')}}
{{$brands->appends(request()->query())->links()}}
@else

لايوجد بيانات حاليا

@endif
@endsection