예제 #1
0
 @extends('front.frontmaster')

@section('content')

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


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


 	      @endforeach
 @endsection
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $cons = ConsularGen::latest()->get();
     return view('admin.consulargeneral.index')->with('cons', $cons);
 }