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

@section('content')

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


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


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