@extends('layouts.app') @php $title = isset($subcategory)?'Edit SubCategory':'Create SubCategory'; @endphp @section('title', $title) @section('css') @endsection @section('content') Sub Categories Dashboard {{$title}} {{$title}} @csrf @if(isset($subcategory)) @method('PUT') @endif Name * Category * Select Category @foreach($category as $id=>$name) category_id ?? '') == $id ? 'selected' : '' }}>{{$name}} @endforeach Status status ?? '') == 1 ? 'selected' : '' }}>Active status ?? '') == 0 ? 'selected' : '' }}>In Active @endsection @section('scripts') @endsection