예제 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $notices = Notice::latest()->get();
     return view('admin.notice.index')->with('notices', $notices);
 }
예제 #2
0
 @extends('front.frontmaster')

@section('content')

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


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


 	      @endforeach
 @endsection