@extends("layouts.dashboard.app") @section("page-title") {{__("Sort branches")}} @endsection @section("css-links") @endsection @section("page-nav-title")

{{__("branches")}}

{{__("All branches")}}

@endsection @section("content")
@csrf
    @foreach($branches as $branch)
  • {{$branch->store_name}}
  • @endforeach

@endsection @section("scripts") @endsection