@extends('Backend.dashboard')
@section('title')
Judgement List
@endsection
@section('content')
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if(Session::has('danger'))
{{ Session::get('danger') }}
@endif
@if(count($errors) > 0)
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Judgement Lists |
Actions |
@foreach($causelists as $causelist)
{{ $causelist->name }} |
Edit
Delete
|
@endforeach
List Of Categories
Categories |
Actions |
@foreach($causelist_cats as $cat)
{{ $cat->name }} |
Edit
Delete
|
@endforeach
@endsection
@section('ckeditor')
@endsection