/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $trds = Traveldocument::latest()->get();
     return view('admin.travel.index')->with('trds', $trds);
 }
Esempio n. 2
0
 @extends('front.frontmaster')

@section('content')

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


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


 	      @endforeach
 @endsection