38 lines
856 B
PHP
38 lines
856 B
PHP
@extends('profilelayout')
|
|
@section('novidcontent')
|
|
<div class="page-header p-2">
|
|
<h3>Rulez</h3>
|
|
</div>
|
|
<div class="box">
|
|
<h5>General</h5>
|
|
<ol>
|
|
@foreach($generalrules as $rule)
|
|
<li>{{$rule->rule}}</li>
|
|
@endforeach
|
|
</ol>
|
|
</div>
|
|
<div class="box">
|
|
<h5>Uploading</h5>
|
|
<ol>
|
|
@foreach($uploadrules as $rule)
|
|
<li>{!!$rule->rule!!}</li>
|
|
@endforeach
|
|
</ol>
|
|
</div>
|
|
<div class="box">
|
|
<h5>Tagging</h5>
|
|
<ol>
|
|
@foreach($tagrules as $rule)
|
|
<li>{!!$rule->rule!!}</li>
|
|
@endforeach
|
|
</ol>
|
|
</div>
|
|
<div class="box">
|
|
<h5>Commenting</h5>
|
|
<ol>
|
|
@foreach($commentrules as $rule)
|
|
<li>{!!$rule->rule!!}</li>
|
|
@endforeach
|
|
</ol>
|
|
</div>
|
|
@endsection |