@extends('admin::layout.default') @section('content') @include('admin::pages.content.documents.heading')
{{ trans('admin.LIST') }}
@foreach($table as $row) @endforeach
{{ trans('admin.OPTIONS') }} {{ trans('admin.NAME') }} {{ trans('admin.URL') }} {{ trans('admin.FILENAME') }} {{ trans('admin.ACTIVE') }}
{{ $row->name or null }} {{ $row->url }} @if (!empty($row->filename)) {{$row->filename}} @endif @if ($row->active == 1) @else @endif
@endsection