@extends('adminlte::page')
@section('title', 'Categories')
@section('content_header')
Campaign Categories
@stop
@section('content')
@include('notifications')
| ID |
Name |
Default Categroy |
|
|
@foreach( $categories as $category )
| {{ $category->id }} |
{{ $category->name }} |
@if( $category->isDefault == 1 )
@else
@endif
|
Edit |
@if( $category->isDefault == 1 )
@else
@endif
|
@endforeach
| ID |
Name |
|
|
|
@stop
@section('adminlte_js')
@stop
@section('plugins.jQuery-UI', true)
@section('plugins.Datatables', true)
@section('plugins.BootstrapSwitch', true)