@extends('layouts.admin.app') @section('title','Dev Category') @section('content')
@yield('title') {{ __('New Category') }}
@if(Session::has('error'))
{{ Session::get('error') }}
@endif @if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if(isset($categories)) @foreach($categories as $category) @endforeach @endif
# Title Icon Count Position Featured ? Action
{{ $loop->iteration }} {{ $category->title }} {{ $category->icon }} () {{ $category->jobs->count() }} {{ $category->position }} {{ $category->is_featured === 1 ? 'Yes': 'No' }} Edit Delete
@endsection @section('js') @endsection