@extends('layout.app') @section('content')
@foreach ($brands->sortByDesc('id')->take(7) as $b) @endforeach
Id Category Name Created_at Action
{{ $b->id }} {{ $b->name }} {{ $b->created_at }} Delete
@endsection