@extends('layouts.admin-simple') @section('title', $project->project_name) @section('page-title', $project->project_name) @section('page-subtitle', 'Project Details') @section('breadcrumb') @endsection @section('page-actions')
@can('warehouse.projects.edit') Edit Project @endcan
@endsection @section('content')

Project Information

Basic Information

Project Number
{{ $project->project_number ?: 'Not set' }}
Project Name
{{ $project->project_name }}
Project Division
@if($project->projectDivision) {{ $project->projectDivision->division_name }} ({{ $project->projectDivision->division_code }}) @else Not assigned @endif
Created Date
{{ $project->created_at->format('M d, Y H:i') }}
Last Updated
{{ $project->updated_at->format('M d, Y H:i') }}
@endsection