@extends('Backend.dashboard') @section('title') Projects @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
@foreach($projects as $project) @endforeach
Projects Actions
{{ $project->name }} Edit Project Delete Project

List Of Categories

@foreach($project_cats as $cat) @endforeach
Categories Actions
{{ $cat->name }} Edit Category Delete Category

Add New Category

@csrf
@csrf
@endsection