예제 #1
0
 @extends('front.frontmaster')

@section('content')

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


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


 	      @endforeach
 @endsection
예제 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $hols = PublicHoliday::latest()->get();
     return view('admin.holiday.index')->with('hols', $hols);
 }