@extends('layouts.app') @section('title', 'Edit Warehouse') @section('breadcrumb') @endsection @section('content')
Warehouse Details
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('code')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
is_default) ? 'checked' : '' }}>
Cancel
Current Stats
Stock Items{{ $warehouse->stocks()->where('quantity', '>', 0)->count() }}
Created{{ $warehouse->created_at->format('d M Y') }}
@endsection