@extends('layouts/contentNavbarLayout') @section('title', 'Tables - Basic Tables') @section('content')

Category

@include('content.notification.notification')
@if(count($data)>0) @foreach ($data as $d) @endforeach @else {{ "No hay nada" }} @endif
@sortablelink('name', 'Name') @sortablelink('description', 'Description') Icon Color Actions
{{$d->name}} {{$d->description}}
{!! $data->appends(request()->query())->render() !!}
@endsection