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

Domain

@include('content.notification.notification')
@if (Session::get('rol') == 'admin')
@endif
@if(count($data)>0) @foreach ($data as $d) @endforeach @else {{ "No hay nada" }} @endif
@sortablelink('friendlyName', 'Name') @sortablelink('url', 'URL') Company Actions
{{$d->friendlyName}} {{$d->url}} {{$d->business}}
{!! $data->appends(request()->query())->render() !!}
@endsection