@extends('layouts.master') @section('content')
Back to Dashboard
Add Price List Name
@csrf
@if(Session::has('success'))

{{ Session('success') }}

@endif @if(Session::has('error'))

{{ Session('error') }}

@endif
Price List Names
@foreach($priceListNames as $list) @endforeach
Code Name Description Action
{{ $list->code }} {{ $list->name }} {{ $list->description }}
@endsection