Esempio n. 1
0
 @extends('front.frontmaster')

@section('content')

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


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


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