usermanual.blade.php 1.89 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
@extends('webprofile.front.jollyany.master')

@section('meta')
<meta name="{{ Str::slug($setting['web_title']) }}" content="custom"/>
  <meta name="description" content="{{ $setting['web_title'] }}">
  @if(array_key_exists('default_keyword', $setting))
<meta name="keywords" content="{{ $setting['default_keyword'] }}">
  @endif
<meta name="author" content="{{ $setting['web_title'] }}">
@endsection

@section('content')
  <section class="post-wrapper-top jt-shadow clearfix">
    <div class="container">
      <div class="col-lg-12">
          <h2>USER MANUAL</h2>
      </div>
    </div>
  </section><!-- end post-wrapper-top -->

  <section class="blog-wrapper">
    <div class="container">
        <div class="row">
          <div id="main-content" class="col-md-12" role="main" align="justify">
            <table class="table table-bordered">
				<thead>
				<tr>
					<th style="width: 5%;">No</th>
					<th>Nama Dokumen</th>
					<th style="width: 15%;">Logo</th>
					<th style="width: 10%;">Option</th>
				</tr>
				</thead>
				<tbody>
				@foreach ($categoriesFile as $value)
				<tr>
					<td colspan="4" style="font-weight: bold;">KATEGORI : {{ $value->name }}</td>
				</tr>
					@php
						$no = 1;
					@endphp
					@foreach ($value->rFile as $item)
					<tr>
						<td style="text-align: center; color: black;">{{ $no++ }}</td>
						<td style="color: black;">{{ $item->title }}</td>
						<td style="text-align: center; color: black;">{{ InseoHelper::tgl($item->created_at) }}</td>
						<td style="text-align: center;">
							<a href="{{ $setting['url_static'] . '/' . $setting['directory'] . '/file/' .$item->file }}" class="btn btn-info"><i class="fa fa-download"> Download</i></a>
						</td>
					</tr>
					@endforeach
				@endforeach
				</tbody>
			</table>
          </div>
        </div>
      </div><!-- end title -->
    </div><!-- end container -->
  </section><!--end white-wrapper -->

@endsection