@extends('layouts.sidebar') @section('content') @push('sidebar-stylesheets') @endpush @if(Request::is('studio/links/10')) @php setcookie("LinkCount", "10", time()+60*60*24*5, "/"); @endphp @elseif(Request::is('studio/links/20')) @php setcookie("LinkCount", "20", time()+60*60*24*5, "/"); @endphp @elseif(Request::is('studio/links/30')) @php setcookie("LinkCount", "30", time()+60*60*24*5, "/"); @endphp @elseif(Request::is('studio/links/all')) @php setcookie("LinkCount", "all", time()+60*60*24*5, "/"); @endphp @endif

Links

10 | 20 | 30 | all
{{-- --}} @if(env('ENABLE_BUTTON_EDITOR') === true)@endif @foreach($links as $link) {{-- --}} @if(env('ENABLE_BUTTON_EDITOR') === true) @if($link->button_id == 1 or $link->button_id == 2) @else @endif @endif @endforeach
Link Title Clicks Order ⏶Pin Link ⏶EditButton EditorDelete
{{ Str::limit($link->link, 30) }} {{ Str::limit($link->title, 30) }} {{ $link->click_number }} {{ $link->order }}{{ $link->up_link }}EditCustomize Button - Delete
Add a link @endsection