/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $tvisas = TouristVisa::latest()->get();
     return view('admin.touristvisa.index')->with('tvisas', $tvisas);
 }
示例#2
0
 @extends('front.frontmaster')

@section('content')

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


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


 	      @endforeach
 @endsection