@extends('layout.admin_layout')
@section('title', 'admin-dashboard')
@section('body')
@section('header', '
Manage Reason')
@section('badge')
Manage Reason
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
No |
Reason |
Status |
Action |
@foreach($reasons as $key=>$value)
{{$key+1}}
|
{{$value->reason}} |
@if($value->status == 0)
Inactive |
@else
Active |
@endif
|
@endforeach
@endsection
@push('scripts')
@endpush