@extends('layouts.master') @section('title', $title) @section('content')

Lists Listing

@if ($error = Session::get('error'))

{{ $error }}

@endif @if ($success = Session::get('success'))

{{ $success }}

@endif @foreach( $allColumns as $key => $value ) @endforeach @foreach( $savedListItems as $savedListItem ) @endforeach
{{ $key }}
{{ $savedListItem->saved_list_item_id }} {{ $savedListItem->saved_list_id }} {{ $savedListItem->data_item_type }} {{ $savedListItem->data_item_id }} {{ $savedListItem->created_at }} {{ $savedListItem->updated_at }}
@endsection @section('pagejs') @endsection