@extends('layouts.index') @section('title') Ref. Storage @endsection @section('css') @endsection @section('content')

List of Ref. Storage

List of Ref. Storage

@php $increment = 1; @endphp @foreach($ref_storage as $data) @endforeach
# Name Address Division Status Option
{{ $increment++ }} {{ $data->location_name }} {{ $data->address }} {{ $data->division != "" ? $data->division : '-' }} @if($data->status == 'Y') Active @else Inactive @endif
Add Ref. Storage

@csrf
Edit Ref. Storage

@csrf @method('PUT') {{-- --}}
@endsection @section('js') @endsection