forked from aslan/applicant-site
12 lines
309 B
PHP
12 lines
309 B
PHP
|
@extends('layouts.admin-layout')
|
||
|
@section('content')
|
||
|
@foreach($onlineDocuments as $onlineDocument)
|
||
|
<div>
|
||
|
{{ $onlineDocument->name }}
|
||
|
{{ $onlineDocument->url }}
|
||
|
{{ $onlineDocument->parent }}
|
||
|
{{ $onlineDocument->children }}
|
||
|
</div>
|
||
|
@endforeach
|
||
|
@endsection
|