@extends('admin.layouts.master') @section('content')

Unhappy Reasons

@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
@forelse($reasons as $category) @empty @endforelse
Id Reason Company Active Action
{{ $category->id }} {{ $category->reason }} {{ implode(", ", $category->company_ids) }} {{ $category->active == 1 ? "True" : "False" }}  
{{ method_field('DELETE') }} {{ csrf_field() }}
@endsection