@extends('front.frontmaster') @section('content') <?php use App\NRNID; $nrns = NRNID::latest()->get(); ?> @foreach($nrns as $nrn ) <h2>{{$nrn->title}}</h2> <p>{!!$nrn->details!!}</p> @endforeach @endsection
/** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { $nrns = NRNID::findorFail($id); $nrns->delete(); return redirect('admin/nrnid'); }