Rulez into ze Database
This commit is contained in:
38
resources/views/layout6/rulez.blade.php
Normal file
38
resources/views/layout6/rulez.blade.php
Normal file
@@ -0,0 +1,38 @@
|
||||
@extends('layout')
|
||||
@section('content')
|
||||
<div class="page-header">
|
||||
<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
|
Reference in New Issue
Block a user