@extends('layouts.admin.master')
@section('title', 'Place Of Supply')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('content')
@if(count($errors) > 0)
Error!!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if($message = Session::get('success'))
@endif
# |
Name |
Action |
@forelse ($places as $place)
{{$loop->iteration}} |
{{ $place->name }} |
|
@empty
@endforelse
@endsection