@extends('admin.layouts.app')
{{-- @push('style')
@endpush --}}
{{-- @section('pagetitlesection')
{{ __('Topics') }}
@endsection --}}
@section('content')
Topic |
Created On |
Status |
Action |
@foreach ($topics as $topic)
{{ $topic->name }} |
{{ date('d-m-Y', strtotime($topic->created_at)) }} |
@switch($topic->is_active)
@case(1)
Active
@break
@case(0)
Inactive
@break
@default
Deleted
@endswitch
|
|
@endforeach
@endsection
@push('scripts')
{{-- --}}
@endpush