@extends('backend.layouts.master') @section('title', 'Project Share Prices - Admin Panel') @section('admin-content') @section('styles') @endsection
@include('backend.layouts.partials.logout')

{{ __('Project Share Price') }}

Add Project Share Price

@foreach($projectshareprice as $key => $projectshareprice) @endforeach
# Project Share Price Transaction Date Actions
{{ $key+1 }} {{ $projectshareprice->project->name ?? "" }} {{ $projectshareprice->share_price ?? "" }} {{ $projectshareprice->transaction_date ? \Carbon\Carbon::parse($projectshareprice->transaction_date)->format('d-m-Y') : '' }}
Edit
@csrf @method('DELETE')
@endsection @section('scripts') @endsection