@extends('backend.layouts.master') @section('title', 'Link List') @section('styles') @endsection @section('scripts') @endsection @section('content')

Links

Pending Link Table
@foreach($links->where('status_id', 2)->sortBy('created_at') as $link) @endforeach
Title User Product Description Actions
{{ $link->title }} {{ $link->user->name }} {{ $link->parent->name }} {{ $link->description }}
{!! csrf_field() !!} {!! method_field('patch') !!}  
 
{!! csrf_field() !!} {!! method_field('delete') !!}  
@endsection