Ejemplo n.º 1
0
 @extends('front.frontmaster')

@section('content')

<?php 
use App\OrgStruc;
$orgs = OrgStruc::latest()->get();
?>


 @foreach($orgs as $org )
<h2>{{$org->title}}</h2>
<p>{!!$org->details!!}</p>


 	      @endforeach
 @endsection
Ejemplo n.º 2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $orgs = OrgStruc::latest()->get();
     return view('admin.orgstruc.index')->with('orgs', $orgs);
 }